-- phpMyAdmin SQL Dump
-- version 5.2.2
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: Apr 01, 2026 at 12:12 PM
-- Server version: 10.11.16-MariaDB-cll-lve
-- PHP Version: 8.4.18

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";


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

--
-- Database: `i8666351_wp3`
--

-- --------------------------------------------------------

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

CREATE TABLE `wp_commentmeta` (
  `meta_id` bigint(20) UNSIGNED NOT NULL,
  `comment_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

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

CREATE TABLE `wp_comments` (
  `comment_ID` bigint(20) UNSIGNED NOT NULL,
  `comment_post_ID` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `comment_author` tinytext NOT NULL,
  `comment_author_email` varchar(100) NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) 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 NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT 0,
  `comment_approved` varchar(20) NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) NOT NULL DEFAULT '',
  `comment_type` varchar(20) NOT NULL DEFAULT 'comment',
  `comment_parent` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `user_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

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

INSERT INTO `wp_comments` (`comment_ID`, `comment_post_ID`, `comment_author`, `comment_author_email`, `comment_author_url`, `comment_author_IP`, `comment_date`, `comment_date_gmt`, `comment_content`, `comment_karma`, `comment_approved`, `comment_agent`, `comment_type`, `comment_parent`, `user_id`) VALUES
(1, 1, 'A WordPress Commenter', 'wapuu@wordpress.example', 'https://wordpress.org/', '', '2023-09-23 05:58:39', '2023-09-23 05:58:39', 'Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://en.gravatar.com/\">Gravatar</a>.', 0, '1', '', 'comment', 0, 0);

-- --------------------------------------------------------

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

CREATE TABLE `wp_e_events` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `event_data` text DEFAULT NULL,
  `created_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

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

CREATE TABLE `wp_e_submissions` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `type` varchar(60) DEFAULT NULL,
  `hash_id` varchar(60) NOT NULL,
  `main_meta_id` bigint(20) UNSIGNED NOT NULL COMMENT 'Id of main field. to represent the main meta field',
  `post_id` bigint(20) UNSIGNED NOT NULL,
  `referer` varchar(500) NOT NULL,
  `referer_title` varchar(300) DEFAULT NULL,
  `element_id` varchar(20) NOT NULL,
  `form_name` varchar(60) NOT NULL,
  `campaign_id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED DEFAULT NULL,
  `user_ip` varchar(46) NOT NULL,
  `user_agent` text NOT NULL,
  `actions_count` int(11) DEFAULT 0,
  `actions_succeeded_count` int(11) DEFAULT 0,
  `status` varchar(20) NOT NULL,
  `is_read` tinyint(1) NOT NULL DEFAULT 0,
  `meta` text DEFAULT NULL,
  `created_at_gmt` datetime NOT NULL,
  `updated_at_gmt` datetime NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

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

CREATE TABLE `wp_e_submissions_actions_log` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `submission_id` bigint(20) UNSIGNED NOT NULL,
  `action_name` varchar(60) NOT NULL,
  `action_label` varchar(60) DEFAULT NULL,
  `status` varchar(20) NOT NULL,
  `log` text DEFAULT NULL,
  `created_at_gmt` datetime NOT NULL,
  `updated_at_gmt` datetime NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

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

CREATE TABLE `wp_e_submissions_values` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `submission_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `key` varchar(60) DEFAULT NULL,
  `value` longtext DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

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

CREATE TABLE `wp_links` (
  `link_id` bigint(20) UNSIGNED NOT NULL,
  `link_url` varchar(255) NOT NULL DEFAULT '',
  `link_name` varchar(255) NOT NULL DEFAULT '',
  `link_image` varchar(255) NOT NULL DEFAULT '',
  `link_target` varchar(25) NOT NULL DEFAULT '',
  `link_description` varchar(255) NOT NULL DEFAULT '',
  `link_visible` varchar(20) 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) NOT NULL DEFAULT '',
  `link_notes` mediumtext NOT NULL,
  `link_rss` varchar(255) NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wp_litespeed_url`
--

CREATE TABLE `wp_litespeed_url` (
  `id` bigint(20) NOT NULL,
  `url` varchar(500) NOT NULL,
  `cache_tags` varchar(1000) NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wp_litespeed_url_file`
--

CREATE TABLE `wp_litespeed_url_file` (
  `id` bigint(20) NOT NULL,
  `url_id` bigint(20) NOT NULL,
  `vary` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'md5 of final vary',
  `filename` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'md5 of file content',
  `type` tinyint(4) NOT NULL COMMENT 'css=1,js=2,ccss=3,ucss=4',
  `mobile` tinyint(4) NOT NULL COMMENT 'mobile=1',
  `webp` tinyint(4) NOT NULL COMMENT 'webp=1',
  `expired` int(11) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

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

CREATE TABLE `wp_options` (
  `option_id` bigint(20) UNSIGNED NOT NULL,
  `option_name` varchar(191) NOT NULL DEFAULT '',
  `option_value` longtext NOT NULL,
  `autoload` varchar(20) NOT NULL DEFAULT 'yes'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

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

INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'siteurl', 'http://av-advertising.com/beyondc', 'yes'),
(2, 'home', 'http://av-advertising.com/beyondc', 'yes'),
(3, 'blogname', 'Beyond Color', 'yes'),
(4, 'blogdescription', '', 'yes'),
(5, 'users_can_register', '0', 'yes'),
(6, 'admin_email', 'irovz794gpdq@sg2plzcpnl491724.prod.sin2.secureserver.net', 'yes'),
(7, 'start_of_week', '1', 'yes'),
(8, 'use_balanceTags', '0', 'yes'),
(9, 'use_smilies', '1', 'yes'),
(10, 'require_name_email', '1', 'yes'),
(11, 'comments_notify', '1', 'yes'),
(12, 'posts_per_rss', '10', 'yes'),
(13, 'rss_use_excerpt', '0', 'yes'),
(14, 'mailserver_url', 'mail.example.com', 'yes'),
(15, 'mailserver_login', 'login@example.com', 'yes'),
(16, 'mailserver_pass', 'password', 'yes'),
(17, 'mailserver_port', '110', 'yes'),
(18, 'default_category', '1', 'yes'),
(19, 'default_comment_status', 'open', 'yes'),
(20, 'default_ping_status', 'open', 'yes'),
(21, 'default_pingback_flag', '1', 'yes'),
(22, 'posts_per_page', '10', 'yes'),
(23, 'date_format', 'F j, Y', 'yes'),
(24, 'time_format', 'g:i a', 'yes'),
(25, 'links_updated_date_format', 'F j, Y g:i a', 'yes'),
(26, 'comment_moderation', '0', 'yes'),
(27, 'moderation_notify', '1', 'yes'),
(28, 'permalink_structure', '/%category%/%postname%/', 'yes'),
(29, 'rewrite_rules', 'a:132:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:42:\"e-landing-page/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"e-landing-page/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"e-landing-page/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"e-landing-page/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"e-landing-page/([^/]+)/embed/?$\";s:47:\"index.php?e-landing-page=$matches[1]&embed=true\";s:35:\"e-landing-page/([^/]+)/trackback/?$\";s:41:\"index.php?e-landing-page=$matches[1]&tb=1\";s:43:\"e-landing-page/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&paged=$matches[2]\";s:50:\"e-landing-page/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&cpage=$matches[2]\";s:39:\"e-landing-page/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?e-landing-page=$matches[1]&page=$matches[2]\";s:31:\"e-landing-page/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"e-landing-page/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"e-landing-page/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"e-landing-page/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:46:\"e-floating-buttons/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:56:\"e-floating-buttons/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:76:\"e-floating-buttons/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:71:\"e-floating-buttons/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:71:\"e-floating-buttons/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:52:\"e-floating-buttons/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:35:\"e-floating-buttons/([^/]+)/embed/?$\";s:51:\"index.php?e-floating-buttons=$matches[1]&embed=true\";s:39:\"e-floating-buttons/([^/]+)/trackback/?$\";s:45:\"index.php?e-floating-buttons=$matches[1]&tb=1\";s:47:\"e-floating-buttons/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?e-floating-buttons=$matches[1]&paged=$matches[2]\";s:54:\"e-floating-buttons/([^/]+)/comment-page-([0-9]{1,})/?$\";s:58:\"index.php?e-floating-buttons=$matches[1]&cpage=$matches[2]\";s:43:\"e-floating-buttons/([^/]+)(?:/([0-9]+))?/?$\";s:57:\"index.php?e-floating-buttons=$matches[1]&page=$matches[2]\";s:35:\"e-floating-buttons/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"e-floating-buttons/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"e-floating-buttons/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"e-floating-buttons/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"e-floating-buttons/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"e-floating-buttons/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=13&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:31:\".+?/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\".+?/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\".+?/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\".+?/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\".+?/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\".+?/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:22:\"(.+?)/([^/]+)/embed/?$\";s:63:\"index.php?category_name=$matches[1]&name=$matches[2]&embed=true\";s:26:\"(.+?)/([^/]+)/trackback/?$\";s:57:\"index.php?category_name=$matches[1]&name=$matches[2]&tb=1\";s:46:\"(.+?)/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:69:\"index.php?category_name=$matches[1]&name=$matches[2]&feed=$matches[3]\";s:41:\"(.+?)/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:69:\"index.php?category_name=$matches[1]&name=$matches[2]&feed=$matches[3]\";s:34:\"(.+?)/([^/]+)/page/?([0-9]{1,})/?$\";s:70:\"index.php?category_name=$matches[1]&name=$matches[2]&paged=$matches[3]\";s:41:\"(.+?)/([^/]+)/comment-page-([0-9]{1,})/?$\";s:70:\"index.php?category_name=$matches[1]&name=$matches[2]&cpage=$matches[3]\";s:30:\"(.+?)/([^/]+)(?:/([0-9]+))?/?$\";s:69:\"index.php?category_name=$matches[1]&name=$matches[2]&page=$matches[3]\";s:20:\".+?/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:30:\".+?/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:50:\".+?/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:45:\".+?/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:45:\".+?/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:26:\".+?/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:38:\"(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:33:\"(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:14:\"(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:26:\"(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:33:\"(.+?)/comment-page-([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&cpage=$matches[2]\";s:8:\"(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";}', 'yes'),
(30, 'hack_file', '0', 'yes'),
(31, 'blog_charset', 'UTF-8', 'yes'),
(32, 'moderation_keys', '', 'no'),
(33, 'active_plugins', 'a:4:{i:0;s:31:\"elementor-pro/elementor-pro.php\";i:1;s:23:\"elementor/elementor.php\";i:2;s:35:\"litespeed-cache/litespeed-cache.php\";i:3;s:63:\"unlimited-addon-for-elementor/unlimited-addon-for-elementor.php\";}', 'yes'),
(34, 'category_base', '', 'yes'),
(35, 'ping_sites', 'https://rpc.pingomatic.com/', 'yes'),
(36, 'comment_max_links', '2', 'yes'),
(37, 'gmt_offset', '0', 'yes'),
(38, 'default_email_category', '1', 'yes'),
(39, 'recently_edited', '', 'no'),
(40, 'template', 'oceanwp', 'yes'),
(41, 'stylesheet', 'oceanwp', 'yes'),
(42, 'comment_registration', '0', 'yes'),
(43, 'html_type', 'text/html', 'yes'),
(44, 'use_trackback', '0', 'yes'),
(45, 'default_role', 'subscriber', 'yes'),
(46, 'db_version', '60717', 'yes'),
(47, 'uploads_use_yearmonth_folders', '1', 'yes'),
(48, 'upload_path', '/home/irovz794gpdq/public_html/av-advertising.com/beyondc/wp-content/uploads', 'yes'),
(49, 'blog_public', '1', 'yes'),
(50, 'default_link_category', '2', 'yes'),
(51, 'show_on_front', 'page', 'yes'),
(52, 'tag_base', '', 'yes'),
(53, 'show_avatars', '1', 'yes'),
(54, 'avatar_rating', 'G', 'yes'),
(55, 'upload_url_path', '', 'yes'),
(56, 'thumbnail_size_w', '150', 'yes'),
(57, 'thumbnail_size_h', '150', 'yes'),
(58, 'thumbnail_crop', '1', 'yes'),
(59, 'medium_size_w', '300', 'yes'),
(60, 'medium_size_h', '300', 'yes'),
(61, 'avatar_default', 'mystery', 'yes'),
(62, 'large_size_w', '1024', 'yes'),
(63, 'large_size_h', '1024', 'yes'),
(64, 'image_default_link_type', 'none', 'yes'),
(65, 'image_default_size', '', 'yes'),
(66, 'image_default_align', '', 'yes'),
(67, 'close_comments_for_old_posts', '0', 'yes'),
(68, 'close_comments_days_old', '14', 'yes'),
(69, 'thread_comments', '1', 'yes'),
(70, 'thread_comments_depth', '5', 'yes'),
(71, 'page_comments', '0', 'yes'),
(72, 'comments_per_page', '50', 'yes'),
(73, 'default_comments_page', 'newest', 'yes'),
(74, 'comment_order', 'asc', 'yes'),
(75, 'sticky_posts', 'a:0:{}', 'yes'),
(76, 'widget_categories', 'a: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:2:{s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}s:35:\"litespeed-cache/litespeed-cache.php\";s:47:\"LiteSpeed\\Activation::uninstall_litespeed_cache\";}', 'no'),
(80, 'timezone_string', '', 'yes'),
(81, 'page_for_posts', '0', 'yes'),
(82, 'page_on_front', '13', 'yes'),
(83, 'default_post_format', '0', 'yes'),
(84, 'link_manager_enabled', '0', 'yes'),
(85, 'finished_splitting_shared_terms', '1', 'yes'),
(86, 'site_icon', '75', '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', '1711000719', '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:{}', 'off'),
(99, 'initial_db_version', '55853', 'yes'),
(100, 'wp_user_roles', 'a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{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:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}', 'yes'),
(101, 'fresh_site', '0', 'off'),
(102, 'user_count', '1', 'no'),
(103, 'widget_block', 'a:7:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;i:8;a:1:{s:7:\"content\";s:52:\"<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\";}}', 'yes'),
(104, 'sidebars_widgets', 'a:9:{s:19:\"wp_inactive_widgets\";a:0:{}s:7:\"sidebar\";a:0:{}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}s:14:\"search_sidebar\";a:0:{}s:10:\"footer-one\";a:0:{}s:10:\"footer-two\";a:0:{}s:12:\"footer-three\";a:0:{}s:11:\"footer-four\";a:0:{}s:13:\"array_version\";i:3;}', 'yes'),
(105, 'cron', 'a:13:{i:1711432719;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:1711432720;a:2:{s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1711432726;a:3:{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;}}s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1711439920;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:1711513596;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:1711518557;a:1:{s:28:\"elementor/tracker/send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1711782453;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1711864719;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:1712099854;a:1:{s:34:\"elementor_1_elementor_updater_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:43:\"elementor_1_elementor_updater_cron_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}}i:1747565315;a:2:{s:27:\"litespeed_task_imgoptm_pull\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:16:\"litespeed_filter\";s:4:\"args\";a:0:{}s:8:\"interval\";i:60;}}s:19:\"litespeed_task_lqip\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:16:\"litespeed_filter\";s:4:\"args\";a:0:{}s:8:\"interval\";i:60;}}}i:1748439252;a:1:{s:26:\"litespeed_task_imgoptm_req\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:16:\"litespeed_filter\";s:4:\"args\";a:0:{}s:8:\"interval\";i:60;}}}i:1775191519;a:1:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}s:7:\"version\";i:2;}', 'on'),
(106, 'widget_pages', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(107, 'widget_calendar', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(108, 'widget_archives', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(109, 'widget_media_audio', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(110, 'widget_media_image', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(111, 'widget_media_gallery', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(112, 'widget_media_video', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(113, 'widget_meta', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(114, 'widget_search', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(115, 'widget_recent-posts', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(116, 'widget_recent-comments', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(117, 'widget_tag_cloud', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(118, 'widget_nav_menu', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(119, 'widget_custom_html', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(120, '_transient_wp_core_block_css_files', 'a:2:{s:7:\"version\";s:5:\"6.9.4\";s:5:\"files\";a:584:{i:0;s:31:\"accordion-heading/style-rtl.css\";i:1;s:35:\"accordion-heading/style-rtl.min.css\";i:2;s:27:\"accordion-heading/style.css\";i:3;s:31:\"accordion-heading/style.min.css\";i:4;s:28:\"accordion-item/style-rtl.css\";i:5;s:32:\"accordion-item/style-rtl.min.css\";i:6;s:24:\"accordion-item/style.css\";i:7;s:28:\"accordion-item/style.min.css\";i:8;s:29:\"accordion-panel/style-rtl.css\";i:9;s:33:\"accordion-panel/style-rtl.min.css\";i:10;s:25:\"accordion-panel/style.css\";i:11;s:29:\"accordion-panel/style.min.css\";i:12;s:23:\"accordion/style-rtl.css\";i:13;s:27:\"accordion/style-rtl.min.css\";i:14;s:19:\"accordion/style.css\";i:15;s:23:\"accordion/style.min.css\";i:16;s:23:\"archives/editor-rtl.css\";i:17;s:27:\"archives/editor-rtl.min.css\";i:18;s:19:\"archives/editor.css\";i:19;s:23:\"archives/editor.min.css\";i:20;s:22:\"archives/style-rtl.css\";i:21;s:26:\"archives/style-rtl.min.css\";i:22;s:18:\"archives/style.css\";i:23;s:22:\"archives/style.min.css\";i:24;s:20:\"audio/editor-rtl.css\";i:25;s:24:\"audio/editor-rtl.min.css\";i:26;s:16:\"audio/editor.css\";i:27;s:20:\"audio/editor.min.css\";i:28;s:19:\"audio/style-rtl.css\";i:29;s:23:\"audio/style-rtl.min.css\";i:30;s:15:\"audio/style.css\";i:31;s:19:\"audio/style.min.css\";i:32;s:19:\"audio/theme-rtl.css\";i:33;s:23:\"audio/theme-rtl.min.css\";i:34;s:15:\"audio/theme.css\";i:35;s:19:\"audio/theme.min.css\";i:36;s:21:\"avatar/editor-rtl.css\";i:37;s:25:\"avatar/editor-rtl.min.css\";i:38;s:17:\"avatar/editor.css\";i:39;s:21:\"avatar/editor.min.css\";i:40;s:20:\"avatar/style-rtl.css\";i:41;s:24:\"avatar/style-rtl.min.css\";i:42;s:16:\"avatar/style.css\";i:43;s:20:\"avatar/style.min.css\";i:44;s:21:\"button/editor-rtl.css\";i:45;s:25:\"button/editor-rtl.min.css\";i:46;s:17:\"button/editor.css\";i:47;s:21:\"button/editor.min.css\";i:48;s:20:\"button/style-rtl.css\";i:49;s:24:\"button/style-rtl.min.css\";i:50;s:16:\"button/style.css\";i:51;s:20:\"button/style.min.css\";i:52;s:22:\"buttons/editor-rtl.css\";i:53;s:26:\"buttons/editor-rtl.min.css\";i:54;s:18:\"buttons/editor.css\";i:55;s:22:\"buttons/editor.min.css\";i:56;s:21:\"buttons/style-rtl.css\";i:57;s:25:\"buttons/style-rtl.min.css\";i:58;s:17:\"buttons/style.css\";i:59;s:21:\"buttons/style.min.css\";i:60;s:22:\"calendar/style-rtl.css\";i:61;s:26:\"calendar/style-rtl.min.css\";i:62;s:18:\"calendar/style.css\";i:63;s:22:\"calendar/style.min.css\";i:64;s:25:\"categories/editor-rtl.css\";i:65;s:29:\"categories/editor-rtl.min.css\";i:66;s:21:\"categories/editor.css\";i:67;s:25:\"categories/editor.min.css\";i:68;s:24:\"categories/style-rtl.css\";i:69;s:28:\"categories/style-rtl.min.css\";i:70;s:20:\"categories/style.css\";i:71;s:24:\"categories/style.min.css\";i:72;s:19:\"code/editor-rtl.css\";i:73;s:23:\"code/editor-rtl.min.css\";i:74;s:15:\"code/editor.css\";i:75;s:19:\"code/editor.min.css\";i:76;s:18:\"code/style-rtl.css\";i:77;s:22:\"code/style-rtl.min.css\";i:78;s:14:\"code/style.css\";i:79;s:18:\"code/style.min.css\";i:80;s:18:\"code/theme-rtl.css\";i:81;s:22:\"code/theme-rtl.min.css\";i:82;s:14:\"code/theme.css\";i:83;s:18:\"code/theme.min.css\";i:84;s:22:\"columns/editor-rtl.css\";i:85;s:26:\"columns/editor-rtl.min.css\";i:86;s:18:\"columns/editor.css\";i:87;s:22:\"columns/editor.min.css\";i:88;s:21:\"columns/style-rtl.css\";i:89;s:25:\"columns/style-rtl.min.css\";i:90;s:17:\"columns/style.css\";i:91;s:21:\"columns/style.min.css\";i:92;s:33:\"comment-author-name/style-rtl.css\";i:93;s:37:\"comment-author-name/style-rtl.min.css\";i:94;s:29:\"comment-author-name/style.css\";i:95;s:33:\"comment-author-name/style.min.css\";i:96;s:29:\"comment-content/style-rtl.css\";i:97;s:33:\"comment-content/style-rtl.min.css\";i:98;s:25:\"comment-content/style.css\";i:99;s:29:\"comment-content/style.min.css\";i:100;s:26:\"comment-date/style-rtl.css\";i:101;s:30:\"comment-date/style-rtl.min.css\";i:102;s:22:\"comment-date/style.css\";i:103;s:26:\"comment-date/style.min.css\";i:104;s:31:\"comment-edit-link/style-rtl.css\";i:105;s:35:\"comment-edit-link/style-rtl.min.css\";i:106;s:27:\"comment-edit-link/style.css\";i:107;s:31:\"comment-edit-link/style.min.css\";i:108;s:32:\"comment-reply-link/style-rtl.css\";i:109;s:36:\"comment-reply-link/style-rtl.min.css\";i:110;s:28:\"comment-reply-link/style.css\";i:111;s:32:\"comment-reply-link/style.min.css\";i:112;s:30:\"comment-template/style-rtl.css\";i:113;s:34:\"comment-template/style-rtl.min.css\";i:114;s:26:\"comment-template/style.css\";i:115;s:30:\"comment-template/style.min.css\";i:116;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:117;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:118;s:38:\"comments-pagination-numbers/editor.css\";i:119;s:42:\"comments-pagination-numbers/editor.min.css\";i:120;s:34:\"comments-pagination/editor-rtl.css\";i:121;s:38:\"comments-pagination/editor-rtl.min.css\";i:122;s:30:\"comments-pagination/editor.css\";i:123;s:34:\"comments-pagination/editor.min.css\";i:124;s:33:\"comments-pagination/style-rtl.css\";i:125;s:37:\"comments-pagination/style-rtl.min.css\";i:126;s:29:\"comments-pagination/style.css\";i:127;s:33:\"comments-pagination/style.min.css\";i:128;s:29:\"comments-title/editor-rtl.css\";i:129;s:33:\"comments-title/editor-rtl.min.css\";i:130;s:25:\"comments-title/editor.css\";i:131;s:29:\"comments-title/editor.min.css\";i:132;s:23:\"comments/editor-rtl.css\";i:133;s:27:\"comments/editor-rtl.min.css\";i:134;s:19:\"comments/editor.css\";i:135;s:23:\"comments/editor.min.css\";i:136;s:22:\"comments/style-rtl.css\";i:137;s:26:\"comments/style-rtl.min.css\";i:138;s:18:\"comments/style.css\";i:139;s:22:\"comments/style.min.css\";i:140;s:20:\"cover/editor-rtl.css\";i:141;s:24:\"cover/editor-rtl.min.css\";i:142;s:16:\"cover/editor.css\";i:143;s:20:\"cover/editor.min.css\";i:144;s:19:\"cover/style-rtl.css\";i:145;s:23:\"cover/style-rtl.min.css\";i:146;s:15:\"cover/style.css\";i:147;s:19:\"cover/style.min.css\";i:148;s:22:\"details/editor-rtl.css\";i:149;s:26:\"details/editor-rtl.min.css\";i:150;s:18:\"details/editor.css\";i:151;s:22:\"details/editor.min.css\";i:152;s:21:\"details/style-rtl.css\";i:153;s:25:\"details/style-rtl.min.css\";i:154;s:17:\"details/style.css\";i:155;s:21:\"details/style.min.css\";i:156;s:20:\"embed/editor-rtl.css\";i:157;s:24:\"embed/editor-rtl.min.css\";i:158;s:16:\"embed/editor.css\";i:159;s:20:\"embed/editor.min.css\";i:160;s:19:\"embed/style-rtl.css\";i:161;s:23:\"embed/style-rtl.min.css\";i:162;s:15:\"embed/style.css\";i:163;s:19:\"embed/style.min.css\";i:164;s:19:\"embed/theme-rtl.css\";i:165;s:23:\"embed/theme-rtl.min.css\";i:166;s:15:\"embed/theme.css\";i:167;s:19:\"embed/theme.min.css\";i:168;s:19:\"file/editor-rtl.css\";i:169;s:23:\"file/editor-rtl.min.css\";i:170;s:15:\"file/editor.css\";i:171;s:19:\"file/editor.min.css\";i:172;s:18:\"file/style-rtl.css\";i:173;s:22:\"file/style-rtl.min.css\";i:174;s:14:\"file/style.css\";i:175;s:18:\"file/style.min.css\";i:176;s:23:\"footnotes/style-rtl.css\";i:177;s:27:\"footnotes/style-rtl.min.css\";i:178;s:19:\"footnotes/style.css\";i:179;s:23:\"footnotes/style.min.css\";i:180;s:23:\"freeform/editor-rtl.css\";i:181;s:27:\"freeform/editor-rtl.min.css\";i:182;s:19:\"freeform/editor.css\";i:183;s:23:\"freeform/editor.min.css\";i:184;s:22:\"gallery/editor-rtl.css\";i:185;s:26:\"gallery/editor-rtl.min.css\";i:186;s:18:\"gallery/editor.css\";i:187;s:22:\"gallery/editor.min.css\";i:188;s:21:\"gallery/style-rtl.css\";i:189;s:25:\"gallery/style-rtl.min.css\";i:190;s:17:\"gallery/style.css\";i:191;s:21:\"gallery/style.min.css\";i:192;s:21:\"gallery/theme-rtl.css\";i:193;s:25:\"gallery/theme-rtl.min.css\";i:194;s:17:\"gallery/theme.css\";i:195;s:21:\"gallery/theme.min.css\";i:196;s:20:\"group/editor-rtl.css\";i:197;s:24:\"group/editor-rtl.min.css\";i:198;s:16:\"group/editor.css\";i:199;s:20:\"group/editor.min.css\";i:200;s:19:\"group/style-rtl.css\";i:201;s:23:\"group/style-rtl.min.css\";i:202;s:15:\"group/style.css\";i:203;s:19:\"group/style.min.css\";i:204;s:19:\"group/theme-rtl.css\";i:205;s:23:\"group/theme-rtl.min.css\";i:206;s:15:\"group/theme.css\";i:207;s:19:\"group/theme.min.css\";i:208;s:21:\"heading/style-rtl.css\";i:209;s:25:\"heading/style-rtl.min.css\";i:210;s:17:\"heading/style.css\";i:211;s:21:\"heading/style.min.css\";i:212;s:19:\"html/editor-rtl.css\";i:213;s:23:\"html/editor-rtl.min.css\";i:214;s:15:\"html/editor.css\";i:215;s:19:\"html/editor.min.css\";i:216;s:20:\"image/editor-rtl.css\";i:217;s:24:\"image/editor-rtl.min.css\";i:218;s:16:\"image/editor.css\";i:219;s:20:\"image/editor.min.css\";i:220;s:19:\"image/style-rtl.css\";i:221;s:23:\"image/style-rtl.min.css\";i:222;s:15:\"image/style.css\";i:223;s:19:\"image/style.min.css\";i:224;s:19:\"image/theme-rtl.css\";i:225;s:23:\"image/theme-rtl.min.css\";i:226;s:15:\"image/theme.css\";i:227;s:19:\"image/theme.min.css\";i:228;s:29:\"latest-comments/style-rtl.css\";i:229;s:33:\"latest-comments/style-rtl.min.css\";i:230;s:25:\"latest-comments/style.css\";i:231;s:29:\"latest-comments/style.min.css\";i:232;s:27:\"latest-posts/editor-rtl.css\";i:233;s:31:\"latest-posts/editor-rtl.min.css\";i:234;s:23:\"latest-posts/editor.css\";i:235;s:27:\"latest-posts/editor.min.css\";i:236;s:26:\"latest-posts/style-rtl.css\";i:237;s:30:\"latest-posts/style-rtl.min.css\";i:238;s:22:\"latest-posts/style.css\";i:239;s:26:\"latest-posts/style.min.css\";i:240;s:18:\"list/style-rtl.css\";i:241;s:22:\"list/style-rtl.min.css\";i:242;s:14:\"list/style.css\";i:243;s:18:\"list/style.min.css\";i:244;s:22:\"loginout/style-rtl.css\";i:245;s:26:\"loginout/style-rtl.min.css\";i:246;s:18:\"loginout/style.css\";i:247;s:22:\"loginout/style.min.css\";i:248;s:19:\"math/editor-rtl.css\";i:249;s:23:\"math/editor-rtl.min.css\";i:250;s:15:\"math/editor.css\";i:251;s:19:\"math/editor.min.css\";i:252;s:18:\"math/style-rtl.css\";i:253;s:22:\"math/style-rtl.min.css\";i:254;s:14:\"math/style.css\";i:255;s:18:\"math/style.min.css\";i:256;s:25:\"media-text/editor-rtl.css\";i:257;s:29:\"media-text/editor-rtl.min.css\";i:258;s:21:\"media-text/editor.css\";i:259;s:25:\"media-text/editor.min.css\";i:260;s:24:\"media-text/style-rtl.css\";i:261;s:28:\"media-text/style-rtl.min.css\";i:262;s:20:\"media-text/style.css\";i:263;s:24:\"media-text/style.min.css\";i:264;s:19:\"more/editor-rtl.css\";i:265;s:23:\"more/editor-rtl.min.css\";i:266;s:15:\"more/editor.css\";i:267;s:19:\"more/editor.min.css\";i:268;s:30:\"navigation-link/editor-rtl.css\";i:269;s:34:\"navigation-link/editor-rtl.min.css\";i:270;s:26:\"navigation-link/editor.css\";i:271;s:30:\"navigation-link/editor.min.css\";i:272;s:29:\"navigation-link/style-rtl.css\";i:273;s:33:\"navigation-link/style-rtl.min.css\";i:274;s:25:\"navigation-link/style.css\";i:275;s:29:\"navigation-link/style.min.css\";i:276;s:33:\"navigation-submenu/editor-rtl.css\";i:277;s:37:\"navigation-submenu/editor-rtl.min.css\";i:278;s:29:\"navigation-submenu/editor.css\";i:279;s:33:\"navigation-submenu/editor.min.css\";i:280;s:25:\"navigation/editor-rtl.css\";i:281;s:29:\"navigation/editor-rtl.min.css\";i:282;s:21:\"navigation/editor.css\";i:283;s:25:\"navigation/editor.min.css\";i:284;s:24:\"navigation/style-rtl.css\";i:285;s:28:\"navigation/style-rtl.min.css\";i:286;s:20:\"navigation/style.css\";i:287;s:24:\"navigation/style.min.css\";i:288;s:23:\"nextpage/editor-rtl.css\";i:289;s:27:\"nextpage/editor-rtl.min.css\";i:290;s:19:\"nextpage/editor.css\";i:291;s:23:\"nextpage/editor.min.css\";i:292;s:24:\"page-list/editor-rtl.css\";i:293;s:28:\"page-list/editor-rtl.min.css\";i:294;s:20:\"page-list/editor.css\";i:295;s:24:\"page-list/editor.min.css\";i:296;s:23:\"page-list/style-rtl.css\";i:297;s:27:\"page-list/style-rtl.min.css\";i:298;s:19:\"page-list/style.css\";i:299;s:23:\"page-list/style.min.css\";i:300;s:24:\"paragraph/editor-rtl.css\";i:301;s:28:\"paragraph/editor-rtl.min.css\";i:302;s:20:\"paragraph/editor.css\";i:303;s:24:\"paragraph/editor.min.css\";i:304;s:23:\"paragraph/style-rtl.css\";i:305;s:27:\"paragraph/style-rtl.min.css\";i:306;s:19:\"paragraph/style.css\";i:307;s:23:\"paragraph/style.min.css\";i:308;s:35:\"post-author-biography/style-rtl.css\";i:309;s:39:\"post-author-biography/style-rtl.min.css\";i:310;s:31:\"post-author-biography/style.css\";i:311;s:35:\"post-author-biography/style.min.css\";i:312;s:30:\"post-author-name/style-rtl.css\";i:313;s:34:\"post-author-name/style-rtl.min.css\";i:314;s:26:\"post-author-name/style.css\";i:315;s:30:\"post-author-name/style.min.css\";i:316;s:25:\"post-author/style-rtl.css\";i:317;s:29:\"post-author/style-rtl.min.css\";i:318;s:21:\"post-author/style.css\";i:319;s:25:\"post-author/style.min.css\";i:320;s:33:\"post-comments-count/style-rtl.css\";i:321;s:37:\"post-comments-count/style-rtl.min.css\";i:322;s:29:\"post-comments-count/style.css\";i:323;s:33:\"post-comments-count/style.min.css\";i:324;s:33:\"post-comments-form/editor-rtl.css\";i:325;s:37:\"post-comments-form/editor-rtl.min.css\";i:326;s:29:\"post-comments-form/editor.css\";i:327;s:33:\"post-comments-form/editor.min.css\";i:328;s:32:\"post-comments-form/style-rtl.css\";i:329;s:36:\"post-comments-form/style-rtl.min.css\";i:330;s:28:\"post-comments-form/style.css\";i:331;s:32:\"post-comments-form/style.min.css\";i:332;s:32:\"post-comments-link/style-rtl.css\";i:333;s:36:\"post-comments-link/style-rtl.min.css\";i:334;s:28:\"post-comments-link/style.css\";i:335;s:32:\"post-comments-link/style.min.css\";i:336;s:26:\"post-content/style-rtl.css\";i:337;s:30:\"post-content/style-rtl.min.css\";i:338;s:22:\"post-content/style.css\";i:339;s:26:\"post-content/style.min.css\";i:340;s:23:\"post-date/style-rtl.css\";i:341;s:27:\"post-date/style-rtl.min.css\";i:342;s:19:\"post-date/style.css\";i:343;s:23:\"post-date/style.min.css\";i:344;s:27:\"post-excerpt/editor-rtl.css\";i:345;s:31:\"post-excerpt/editor-rtl.min.css\";i:346;s:23:\"post-excerpt/editor.css\";i:347;s:27:\"post-excerpt/editor.min.css\";i:348;s:26:\"post-excerpt/style-rtl.css\";i:349;s:30:\"post-excerpt/style-rtl.min.css\";i:350;s:22:\"post-excerpt/style.css\";i:351;s:26:\"post-excerpt/style.min.css\";i:352;s:34:\"post-featured-image/editor-rtl.css\";i:353;s:38:\"post-featured-image/editor-rtl.min.css\";i:354;s:30:\"post-featured-image/editor.css\";i:355;s:34:\"post-featured-image/editor.min.css\";i:356;s:33:\"post-featured-image/style-rtl.css\";i:357;s:37:\"post-featured-image/style-rtl.min.css\";i:358;s:29:\"post-featured-image/style.css\";i:359;s:33:\"post-featured-image/style.min.css\";i:360;s:34:\"post-navigation-link/style-rtl.css\";i:361;s:38:\"post-navigation-link/style-rtl.min.css\";i:362;s:30:\"post-navigation-link/style.css\";i:363;s:34:\"post-navigation-link/style.min.css\";i:364;s:27:\"post-template/style-rtl.css\";i:365;s:31:\"post-template/style-rtl.min.css\";i:366;s:23:\"post-template/style.css\";i:367;s:27:\"post-template/style.min.css\";i:368;s:24:\"post-terms/style-rtl.css\";i:369;s:28:\"post-terms/style-rtl.min.css\";i:370;s:20:\"post-terms/style.css\";i:371;s:24:\"post-terms/style.min.css\";i:372;s:31:\"post-time-to-read/style-rtl.css\";i:373;s:35:\"post-time-to-read/style-rtl.min.css\";i:374;s:27:\"post-time-to-read/style.css\";i:375;s:31:\"post-time-to-read/style.min.css\";i:376;s:24:\"post-title/style-rtl.css\";i:377;s:28:\"post-title/style-rtl.min.css\";i:378;s:20:\"post-title/style.css\";i:379;s:24:\"post-title/style.min.css\";i:380;s:26:\"preformatted/style-rtl.css\";i:381;s:30:\"preformatted/style-rtl.min.css\";i:382;s:22:\"preformatted/style.css\";i:383;s:26:\"preformatted/style.min.css\";i:384;s:24:\"pullquote/editor-rtl.css\";i:385;s:28:\"pullquote/editor-rtl.min.css\";i:386;s:20:\"pullquote/editor.css\";i:387;s:24:\"pullquote/editor.min.css\";i:388;s:23:\"pullquote/style-rtl.css\";i:389;s:27:\"pullquote/style-rtl.min.css\";i:390;s:19:\"pullquote/style.css\";i:391;s:23:\"pullquote/style.min.css\";i:392;s:23:\"pullquote/theme-rtl.css\";i:393;s:27:\"pullquote/theme-rtl.min.css\";i:394;s:19:\"pullquote/theme.css\";i:395;s:23:\"pullquote/theme.min.css\";i:396;s:39:\"query-pagination-numbers/editor-rtl.css\";i:397;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:398;s:35:\"query-pagination-numbers/editor.css\";i:399;s:39:\"query-pagination-numbers/editor.min.css\";i:400;s:31:\"query-pagination/editor-rtl.css\";i:401;s:35:\"query-pagination/editor-rtl.min.css\";i:402;s:27:\"query-pagination/editor.css\";i:403;s:31:\"query-pagination/editor.min.css\";i:404;s:30:\"query-pagination/style-rtl.css\";i:405;s:34:\"query-pagination/style-rtl.min.css\";i:406;s:26:\"query-pagination/style.css\";i:407;s:30:\"query-pagination/style.min.css\";i:408;s:25:\"query-title/style-rtl.css\";i:409;s:29:\"query-title/style-rtl.min.css\";i:410;s:21:\"query-title/style.css\";i:411;s:25:\"query-title/style.min.css\";i:412;s:25:\"query-total/style-rtl.css\";i:413;s:29:\"query-total/style-rtl.min.css\";i:414;s:21:\"query-total/style.css\";i:415;s:25:\"query-total/style.min.css\";i:416;s:20:\"query/editor-rtl.css\";i:417;s:24:\"query/editor-rtl.min.css\";i:418;s:16:\"query/editor.css\";i:419;s:20:\"query/editor.min.css\";i:420;s:19:\"quote/style-rtl.css\";i:421;s:23:\"quote/style-rtl.min.css\";i:422;s:15:\"quote/style.css\";i:423;s:19:\"quote/style.min.css\";i:424;s:19:\"quote/theme-rtl.css\";i:425;s:23:\"quote/theme-rtl.min.css\";i:426;s:15:\"quote/theme.css\";i:427;s:19:\"quote/theme.min.css\";i:428;s:23:\"read-more/style-rtl.css\";i:429;s:27:\"read-more/style-rtl.min.css\";i:430;s:19:\"read-more/style.css\";i:431;s:23:\"read-more/style.min.css\";i:432;s:18:\"rss/editor-rtl.css\";i:433;s:22:\"rss/editor-rtl.min.css\";i:434;s:14:\"rss/editor.css\";i:435;s:18:\"rss/editor.min.css\";i:436;s:17:\"rss/style-rtl.css\";i:437;s:21:\"rss/style-rtl.min.css\";i:438;s:13:\"rss/style.css\";i:439;s:17:\"rss/style.min.css\";i:440;s:21:\"search/editor-rtl.css\";i:441;s:25:\"search/editor-rtl.min.css\";i:442;s:17:\"search/editor.css\";i:443;s:21:\"search/editor.min.css\";i:444;s:20:\"search/style-rtl.css\";i:445;s:24:\"search/style-rtl.min.css\";i:446;s:16:\"search/style.css\";i:447;s:20:\"search/style.min.css\";i:448;s:20:\"search/theme-rtl.css\";i:449;s:24:\"search/theme-rtl.min.css\";i:450;s:16:\"search/theme.css\";i:451;s:20:\"search/theme.min.css\";i:452;s:24:\"separator/editor-rtl.css\";i:453;s:28:\"separator/editor-rtl.min.css\";i:454;s:20:\"separator/editor.css\";i:455;s:24:\"separator/editor.min.css\";i:456;s:23:\"separator/style-rtl.css\";i:457;s:27:\"separator/style-rtl.min.css\";i:458;s:19:\"separator/style.css\";i:459;s:23:\"separator/style.min.css\";i:460;s:23:\"separator/theme-rtl.css\";i:461;s:27:\"separator/theme-rtl.min.css\";i:462;s:19:\"separator/theme.css\";i:463;s:23:\"separator/theme.min.css\";i:464;s:24:\"shortcode/editor-rtl.css\";i:465;s:28:\"shortcode/editor-rtl.min.css\";i:466;s:20:\"shortcode/editor.css\";i:467;s:24:\"shortcode/editor.min.css\";i:468;s:24:\"site-logo/editor-rtl.css\";i:469;s:28:\"site-logo/editor-rtl.min.css\";i:470;s:20:\"site-logo/editor.css\";i:471;s:24:\"site-logo/editor.min.css\";i:472;s:23:\"site-logo/style-rtl.css\";i:473;s:27:\"site-logo/style-rtl.min.css\";i:474;s:19:\"site-logo/style.css\";i:475;s:23:\"site-logo/style.min.css\";i:476;s:27:\"site-tagline/editor-rtl.css\";i:477;s:31:\"site-tagline/editor-rtl.min.css\";i:478;s:23:\"site-tagline/editor.css\";i:479;s:27:\"site-tagline/editor.min.css\";i:480;s:26:\"site-tagline/style-rtl.css\";i:481;s:30:\"site-tagline/style-rtl.min.css\";i:482;s:22:\"site-tagline/style.css\";i:483;s:26:\"site-tagline/style.min.css\";i:484;s:25:\"site-title/editor-rtl.css\";i:485;s:29:\"site-title/editor-rtl.min.css\";i:486;s:21:\"site-title/editor.css\";i:487;s:25:\"site-title/editor.min.css\";i:488;s:24:\"site-title/style-rtl.css\";i:489;s:28:\"site-title/style-rtl.min.css\";i:490;s:20:\"site-title/style.css\";i:491;s:24:\"site-title/style.min.css\";i:492;s:26:\"social-link/editor-rtl.css\";i:493;s:30:\"social-link/editor-rtl.min.css\";i:494;s:22:\"social-link/editor.css\";i:495;s:26:\"social-link/editor.min.css\";i:496;s:27:\"social-links/editor-rtl.css\";i:497;s:31:\"social-links/editor-rtl.min.css\";i:498;s:23:\"social-links/editor.css\";i:499;s:27:\"social-links/editor.min.css\";i:500;s:26:\"social-links/style-rtl.css\";i:501;s:30:\"social-links/style-rtl.min.css\";i:502;s:22:\"social-links/style.css\";i:503;s:26:\"social-links/style.min.css\";i:504;s:21:\"spacer/editor-rtl.css\";i:505;s:25:\"spacer/editor-rtl.min.css\";i:506;s:17:\"spacer/editor.css\";i:507;s:21:\"spacer/editor.min.css\";i:508;s:20:\"spacer/style-rtl.css\";i:509;s:24:\"spacer/style-rtl.min.css\";i:510;s:16:\"spacer/style.css\";i:511;s:20:\"spacer/style.min.css\";i:512;s:20:\"table/editor-rtl.css\";i:513;s:24:\"table/editor-rtl.min.css\";i:514;s:16:\"table/editor.css\";i:515;s:20:\"table/editor.min.css\";i:516;s:19:\"table/style-rtl.css\";i:517;s:23:\"table/style-rtl.min.css\";i:518;s:15:\"table/style.css\";i:519;s:19:\"table/style.min.css\";i:520;s:19:\"table/theme-rtl.css\";i:521;s:23:\"table/theme-rtl.min.css\";i:522;s:15:\"table/theme.css\";i:523;s:19:\"table/theme.min.css\";i:524;s:24:\"tag-cloud/editor-rtl.css\";i:525;s:28:\"tag-cloud/editor-rtl.min.css\";i:526;s:20:\"tag-cloud/editor.css\";i:527;s:24:\"tag-cloud/editor.min.css\";i:528;s:23:\"tag-cloud/style-rtl.css\";i:529;s:27:\"tag-cloud/style-rtl.min.css\";i:530;s:19:\"tag-cloud/style.css\";i:531;s:23:\"tag-cloud/style.min.css\";i:532;s:28:\"template-part/editor-rtl.css\";i:533;s:32:\"template-part/editor-rtl.min.css\";i:534;s:24:\"template-part/editor.css\";i:535;s:28:\"template-part/editor.min.css\";i:536;s:27:\"template-part/theme-rtl.css\";i:537;s:31:\"template-part/theme-rtl.min.css\";i:538;s:23:\"template-part/theme.css\";i:539;s:27:\"template-part/theme.min.css\";i:540;s:24:\"term-count/style-rtl.css\";i:541;s:28:\"term-count/style-rtl.min.css\";i:542;s:20:\"term-count/style.css\";i:543;s:24:\"term-count/style.min.css\";i:544;s:30:\"term-description/style-rtl.css\";i:545;s:34:\"term-description/style-rtl.min.css\";i:546;s:26:\"term-description/style.css\";i:547;s:30:\"term-description/style.min.css\";i:548;s:23:\"term-name/style-rtl.css\";i:549;s:27:\"term-name/style-rtl.min.css\";i:550;s:19:\"term-name/style.css\";i:551;s:23:\"term-name/style.min.css\";i:552;s:28:\"term-template/editor-rtl.css\";i:553;s:32:\"term-template/editor-rtl.min.css\";i:554;s:24:\"term-template/editor.css\";i:555;s:28:\"term-template/editor.min.css\";i:556;s:27:\"term-template/style-rtl.css\";i:557;s:31:\"term-template/style-rtl.min.css\";i:558;s:23:\"term-template/style.css\";i:559;s:27:\"term-template/style.min.css\";i:560;s:27:\"text-columns/editor-rtl.css\";i:561;s:31:\"text-columns/editor-rtl.min.css\";i:562;s:23:\"text-columns/editor.css\";i:563;s:27:\"text-columns/editor.min.css\";i:564;s:26:\"text-columns/style-rtl.css\";i:565;s:30:\"text-columns/style-rtl.min.css\";i:566;s:22:\"text-columns/style.css\";i:567;s:26:\"text-columns/style.min.css\";i:568;s:19:\"verse/style-rtl.css\";i:569;s:23:\"verse/style-rtl.min.css\";i:570;s:15:\"verse/style.css\";i:571;s:19:\"verse/style.min.css\";i:572;s:20:\"video/editor-rtl.css\";i:573;s:24:\"video/editor-rtl.min.css\";i:574;s:16:\"video/editor.css\";i:575;s:20:\"video/editor.min.css\";i:576;s:19:\"video/style-rtl.css\";i:577;s:23:\"video/style-rtl.min.css\";i:578;s:15:\"video/style.css\";i:579;s:19:\"video/style.min.css\";i:580;s:19:\"video/theme-rtl.css\";i:581;s:23:\"video/theme-rtl.min.css\";i:582;s:15:\"video/theme.css\";i:583;s:19:\"video/theme.min.css\";}}', 'yes'),
(122, 'recovery_keys', 'a:0:{}', 'off'),
(124, 'theme_mods_twentytwentythree', 'a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1695621172;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}', 'no'),
(125, 'https_detection_errors', 'a:0:{}', 'off'),
(136, '_transient_update_plugins', 'O:8:\"stdClass\":1:{s:12:\"last_checked\";i:0;}', 'yes'),
(137, '_transient_update_themes', 'O:8:\"stdClass\":1:{s:12:\"last_checked\";i:0;}', 'yes'),
(138, 'wpnux_imported', '0', 'no'),
(139, 'wpnux_debug_log', '2023-09-23 05:58:53 wpem_self_destruct\n', 'no'),
(142, 'finished_updating_comment_type', '1', 'yes'),
(152, '_transient_health-check-site-status-result', '{\"good\":16,\"recommended\":5,\"critical\":1}', 'yes'),
(173, 'recently_activated', 'a:3:{s:29:\"use-any-font/use-any-font.php\";i:1696592371;s:29:\"custom-fonts/custom-fonts.php\";i:1696591443;s:55:\"unlimited-elementor-inner-sections-by-boomdevs/euis.php\";i:1696591437;}', 'off'),
(180, 'elementor_active_kit', '6', 'yes'),
(181, 'elementor_font_display', 'swap', 'yes'),
(184, 'elementor_version', '3.20.2', 'yes'),
(185, 'elementor_install_history', 'a:18:{s:6:\"3.16.4\";i:1695620957;s:6:\"3.16.5\";i:1696914211;s:6:\"3.16.6\";i:1697614068;s:6:\"3.17.1\";i:1698305354;s:6:\"3.17.2\";i:1698909833;s:6:\"3.17.3\";i:1699513637;s:6:\"3.18.0\";i:1701760011;s:6:\"3.18.1\";i:1701911222;s:6:\"3.18.2\";i:1702192052;s:6:\"3.18.3\";i:1703126879;s:6:\"3.19.0\";i:1706598595;s:6:\"3.19.1\";i:1707268033;s:6:\"3.19.2\";i:1707462425;s:6:\"3.19.3\";i:1709104019;s:6:\"3.19.4\";i:1709276837;s:6:\"3.20.0\";i:1710292026;s:6:\"3.20.1\";i:1710486427;s:6:\"3.20.2\";i:1711091239;}', 'yes'),
(186, 'elementor_events_db_version', '1.0.0', 'no'),
(188, '_elementor_installed_time', '1695620958', 'yes');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(189, 'elementor_remote_info_library', 'a:3:{s:10:\"types_data\";a:4:{s:5:\"block\";a:2:{s:10:\"categories\";a:27:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:3:\"faq\";i:9;s:8:\"features\";i:10;s:6:\"footer\";i:11;s:7:\"Gallery\";i:12;s:6:\"header\";i:13;s:4:\"hero\";i:14;s:9:\"portfolio\";i:15;s:7:\"pricing\";i:16;s:15:\"product archive\";i:17;s:5:\"Quote\";i:18;s:15:\"Service Details\";i:19;s:8:\"services\";i:20;s:11:\"single page\";i:21;s:11:\"single post\";i:22;s:14:\"single product\";i:23;s:5:\"stats\";i:24;s:9:\"subscribe\";i:25;s:4:\"team\";i:26;s:12:\"testimonials\";}s:4:\"sets\";a:5:{i:0;s:11:\"Boxing Club\";i:1;s:19:\"Business Consultant\";i:2;s:16:\"Marketing Agency\";i:3;s:9:\"Wireframe\";i:4;s:15:\"Workshop Center\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:6:{i:0;s:10:\"bottom bar\";i:1;s:7:\"classic\";i:2;s:6:\"fly-in\";i:3;s:11:\"full screen\";i:4;s:9:\"hello bar\";i:5;s:8:\"slide-in\";}}s:2:\"lp\";a:1:{s:10:\"categories\";a:15:{i:0;s:8:\"Business\";i:1;s:16:\"Coming Soon Page\";i:2;s:9:\"eCommerce\";i:3;s:9:\"Education\";i:4;s:6:\"Events\";i:5;s:18:\"Health and Fitness\";i:6;s:3:\"NFT\";i:7;s:14:\"Online Service\";i:8;s:7:\"Product\";i:9;s:11:\"Real Estate\";i:10;s:18:\"Social Involvement\";i:11;s:14:\"Thank You Page\";i:12;s:6:\"Travel\";i:13;s:18:\"Under Construction\";i:14;s:9:\"Wireframe\";}}s:2:\"lb\";a:1:{s:10:\"categories\";a:2:{i:0;s:4:\"post\";i:1;s:7:\"product\";}}}s:10:\"categories\";a:27:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:3:\"faq\";i:9;s:8:\"features\";i:10;s:6:\"footer\";i:11;s:7:\"Gallery\";i:12;s:6:\"header\";i:13;s:4:\"hero\";i:14;s:9:\"portfolio\";i:15;s:7:\"pricing\";i:16;s:15:\"product archive\";i:17;s:5:\"Quote\";i:18;s:15:\"Service Details\";i:19;s:8:\"services\";i:20;s:11:\"single page\";i:21;s:11:\"single post\";i:22;s:14:\"single product\";i:23;s:5:\"stats\";i:24;s:9:\"subscribe\";i:25;s:4:\"team\";i:26;s:12:\"testimonials\";}s:9:\"templates\";a:823:{i:0;a:18:{s:4:\"tmpl\";i:1280;s:2:\"id\";i:22403;s:5:\"title\";s:40:\"Hello Bar | Subscribe | Aesthetic Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/aesthetic-clinic-19.jpg\";s:12:\"tmpl_created\";i:1647354307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/hello-bar-subscribe-aesthetic-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:48:\"[\"Barbershop\",\"Business\",\"Discount\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:18:{s:4:\"tmpl\";i:1281;s:2:\"id\";i:22410;s:5:\"title\";s:32:\"Fly-In | Discount | Hair Stylist\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/hair-stylist-20.jpg\";s:12:\"tmpl_created\";i:1647354614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-discount-hair-stylist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Barbershop\",\"Discount\",\"Hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:18:{s:4:\"tmpl\";i:1285;s:2:\"id\";i:22440;s:5:\"title\";s:32:\"Classic | Subscribe | Shoe Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/shoes-store-21.jpg\";s:12:\"tmpl_created\";i:1647418620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-subscribe-shoe-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:37:\"[\"Ecommerce\",\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:18:{s:4:\"tmpl\";i:1286;s:2:\"id\";i:22446;s:5:\"title\";s:37:\"Full Screen | Subscribe | Denim Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/denim-store-22.jpg\";s:12:\"tmpl_created\";i:1647419614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/full-screen-subscribe-denim-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:18:{s:4:\"tmpl\";i:1287;s:2:\"id\";i:22452;s:5:\"title\";s:37:\"Fly-In | Subscribe | Pizza Restaurant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/pizza-restaurant-23.jpg\";s:12:\"tmpl_created\";i:1647420733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-subscribe-pizza-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:19:\"[\"Business\",\"Food\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:18:{s:4:\"tmpl\";i:1288;s:2:\"id\";i:22458;s:5:\"title\";s:38:\"Full Screen | Subscribe | Fashion Shop\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-shop-24.jpg\";s:12:\"tmpl_created\";i:1647426379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-subscribe-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Ecommerce\",\"Fashion\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:18:{s:4:\"tmpl\";i:1289;s:2:\"id\";i:22464;s:5:\"title\";s:32:\"Fly-In | Contact | Makeup Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/makeup-studio-25.jpg\";s:12:\"tmpl_created\";i:1647427026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-makeup-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:18:{s:4:\"tmpl\";i:1290;s:2:\"id\";i:22470;s:5:\"title\";s:32:\"Fly-In | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-26.jpg\";s:12:\"tmpl_created\";i:1647428250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:18:{s:4:\"tmpl\";i:1291;s:2:\"id\";i:22480;s:5:\"title\";s:27:\"Classic | CTA | MasterClass\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/master-class-27.jpg\";s:12:\"tmpl_created\";i:1647428474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-masterclass/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"cta\",\"Magazine\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:18:{s:4:\"tmpl\";i:1292;s:2:\"id\";i:22489;s:5:\"title\";s:29:\"Classic | CTA | Music Concert\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/music-concert-29.jpg\";s:12:\"tmpl_created\";i:1647429738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-music-concert/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"cta\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:18:{s:4:\"tmpl\";i:1293;s:2:\"id\";i:22495;s:5:\"title\";s:27:\"Classic | CTA | Music Album\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/music-album-30.jpg\";s:12:\"tmpl_created\";i:1647430056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-music-album/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Ba\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:18:{s:4:\"tmpl\";i:1294;s:2:\"id\";i:22501;s:5:\"title\";s:37:\"Fly-In | CTA | Photography Exhibition\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/photography-exhibition-31.jpg\";s:12:\"tmpl_created\";i:1647430512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-photography-exhibition/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:18:{s:4:\"tmpl\";i:1295;s:2:\"id\";i:22507;s:5:\"title\";s:34:\"Classic | CTA | Clothing Shop Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/clothing-shop-sale-32.jpg\";s:12:\"tmpl_created\";i:1647430774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-cta-clothing-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:18:{s:4:\"tmpl\";i:1296;s:2:\"id\";i:22486;s:5:\"title\";s:30:\"Classic | CTA | Shop Promotion\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/shop-promotion-28.jpg\";s:12:\"tmpl_created\";i:1647430951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-shop-promotion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"cta\",\"Magazine\",\"Photography\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:18:{s:4:\"tmpl\";i:1297;s:2:\"id\";i:22516;s:5:\"title\";s:32:\"Fly-In | CTA | Glasses Shop Sale\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/glasses-shop-sale-33.jpg\";s:12:\"tmpl_created\";i:1647431136;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-cta-glasses-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:30:\"[\"Business\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:18:{s:4:\"tmpl\";i:1298;s:2:\"id\";i:22522;s:5:\"title\";s:30:\"Fly-In | Discount | Skate Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/50-skate-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647434058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-skate-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:18:{s:4:\"tmpl\";i:1299;s:2:\"id\";i:22532;s:5:\"title\";s:43:\"Classic | Subscription | Basketball Academy\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/21-basketball-academy-Subscription.jpg\";s:12:\"tmpl_created\";i:1647434608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/classic-subscription-basketball-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Education\",\"Marketing\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:18:{s:4:\"tmpl\";i:1300;s:2:\"id\";i:22543;s:5:\"title\";s:38:\"Classic | Discount | Veterinary Clinic\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/veterinery-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647435581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-discount-veterinary-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Discount\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:18:{s:4:\"tmpl\";i:1301;s:2:\"id\";i:22553;s:5:\"title\";s:39:\"Classic | Contact | Business Consulting\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/27-business-consulting-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647439935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-contact-business-consulting/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:18:{s:4:\"tmpl\";i:1302;s:2:\"id\";i:22562;s:5:\"title\";s:28:\"Classic | Contact | Handyman\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/handyman-small.jpg\";s:12:\"tmpl_created\";i:1647440333;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-contact-handyman/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:18:{s:4:\"tmpl\";i:1303;s:2:\"id\";i:22573;s:5:\"title\";s:40:\"Classic | Discount | Online Fashion Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/31-online-fashion-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647462549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-online-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:18:{s:4:\"tmpl\";i:1304;s:2:\"id\";i:22583;s:5:\"title\";s:36:\"Fly-In | Discount | Personal Trainer\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/personal-trainer-small.jpg\";s:12:\"tmpl_created\";i:1647503781;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-personal-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:18:{s:4:\"tmpl\";i:1305;s:2:\"id\";i:22592;s:5:\"title\";s:41:\"Classic | Contact | Illustrator Portfolio\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/illustrator-protfolio-small.jpg\";s:12:\"tmpl_created\";i:1647504218;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-contact-illustrator-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:49:\"[\"Contact\",\"Creative Portfolio\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:18:{s:4:\"tmpl\";i:1306;s:2:\"id\";i:22602;s:5:\"title\";s:46:\"Bottom Bar | Discount | Handmade Ceramics Shop\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2022/03/handmade-ceramic-shop-36-small.jpg\";s:12:\"tmpl_created\";i:1647507007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-ceramics-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:48:\"[\"Business\",\"cta\",\"Ecommerce\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:18:{s:4:\"tmpl\";i:1307;s:2:\"id\";i:22612;s:5:\"title\";s:51:\"Classic | Contact | Classic Car Restoration Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/restoration-car-shop-37-small.jpg\";s:12:\"tmpl_created\";i:1647507310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/classic-contact-classic-car-restoration-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:18:{s:4:\"tmpl\";i:1308;s:2:\"id\";i:22621;s:5:\"title\";s:30:\"Classic | Booking | Life Coach\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/38-life-coach-Booking.jpg\";s:12:\"tmpl_created\";i:1647508596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-booking-life-coach/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Booking\",\"Business\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:18:{s:4:\"tmpl\";i:1309;s:2:\"id\";i:22632;s:5:\"title\";s:42:\"Classic |  Subscription | Merchandise Shop\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/Merchandise-Shop-39-small.jpg\";s:12:\"tmpl_created\";i:1647509196;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-subscription-merchandise-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Ecommerce\",\"Marketing\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:18:{s:4:\"tmpl\";i:1310;s:2:\"id\";i:22643;s:5:\"title\";s:48:\"Fly-In | Contact | Non-Governmental Organization\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/NGO-41-small.jpg\";s:12:\"tmpl_created\";i:1647509528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:150:\"https://library.elementor.com/popups/fly-in-contact-non-governmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:18:{s:4:\"tmpl\";i:1311;s:2:\"id\";i:22654;s:5:\"title\";s:35:\"Hello Bar | Contact | Family Doctor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/family-doctor-44-small.jpg\";s:12:\"tmpl_created\";i:1647509732;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/hello-bar-contact-family-doctor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Contact\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:18:{s:4:\"tmpl\";i:1312;s:2:\"id\";i:22663;s:5:\"title\";s:36:\"Classic | Subscription | Sports Blog\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/45-sport-blog-Subscription.jpg\";s:12:\"tmpl_created\";i:1647509908;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-sports-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:18:{s:4:\"tmpl\";i:1313;s:2:\"id\";i:22673;s:5:\"title\";s:30:\"Hello Bar | Booking | Event DJ\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/DJ-service-46-small.jpg\";s:12:\"tmpl_created\";i:1647510160;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-booking-event-dj/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Booking\",\"Events\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:18:{s:4:\"tmpl\";i:1314;s:2:\"id\";i:22684;s:5:\"title\";s:36:\"Fly-In | Discount | Cleaning Company\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/51-cleaning-company-Discount.jpg\";s:12:\"tmpl_created\";i:1647510546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-cleaning-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Offer\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:18:{s:4:\"tmpl\";i:1315;s:2:\"id\";i:22693;s:5:\"title\";s:28:\"Fly-In | Contact | Carpenter\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/carpenter-53-small.jpg\";s:12:\"tmpl_created\";i:1647511972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-carpenter/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:18:{s:4:\"tmpl\";i:1316;s:2:\"id\";i:22703;s:5:\"title\";s:31:\"Classic | Booking | Yoga Studio\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/55-yoga-studio-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647512209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-booking-yoga-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Booking\",\"Contact\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:18:{s:4:\"tmpl\";i:1317;s:2:\"id\";i:22714;s:5:\"title\";s:37:\"Classic | Discount | Pet Care Company\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/56-Pet-Care-Discount.jpg\";s:12:\"tmpl_created\";i:1647513031;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-pet-care-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:18:{s:4:\"tmpl\";i:1318;s:2:\"id\";i:22725;s:5:\"title\";s:38:\"Fly-In | Discount | Online Coffee Shop\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/online-coffee-shop-57-small.jpg\";s:12:\"tmpl_created\";i:1647513325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-discount-online-coffee-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Food\",\"Offer\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:18:{s:4:\"tmpl\";i:1319;s:2:\"id\";i:22737;s:5:\"title\";s:44:\"Fly-In | CTA | Moving &#038; Storage Company\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/moving-company-59-small.jpg\";s:12:\"tmpl_created\";i:1647520956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-moving-storage-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:18:{s:4:\"tmpl\";i:1320;s:2:\"id\";i:22749;s:5:\"title\";s:47:\"Classic | Contact | Industrial Design Portfolio\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/60-industrial-design-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647528116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/classic-contact-industrial-design-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:40:\"[\"Contact\",\"Interior Design\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:18:{s:4:\"tmpl\";i:1321;s:2:\"id\";i:22759;s:5:\"title\";s:25:\"Classic | Contact | Drone\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/drone-61-small.jpg\";s:12:\"tmpl_created\";i:1647528899;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-contact-drone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:18:{s:4:\"tmpl\";i:1322;s:2:\"id\";i:22768;s:5:\"title\";s:46:\"Full Screen | Menu | Fashion Stylist Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/62-Fashion-Stylist-Menu.jpg\";s:12:\"tmpl_created\";i:1647529434;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/full-screen-menu-fashion-stylist-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Fashion\",\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:18:{s:4:\"tmpl\";i:1323;s:2:\"id\";i:22780;s:5:\"title\";s:31:\"Fly-In | CTA | Landscape Design\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/64-Landscape-Design-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647530337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-landscape-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:18:{s:4:\"tmpl\";i:1324;s:2:\"id\";i:22790;s:5:\"title\";s:48:\"Bottom Bar  | Contact | Architecture Photography\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/architecture-photography-65-small.jpg\";s:12:\"tmpl_created\";i:1647532358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/bottom-bar-contact-architecture-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:26:\"[\"Architecture\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:18:{s:4:\"tmpl\";i:1325;s:2:\"id\";i:22800;s:5:\"title\";s:41:\"Fly-In  | CTA | Speech-Language Therapist\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/66-Speech-Language-Therapist-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647532720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/fly-in-cta-speech-language-therapist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:25:\"[\"cta\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:18:{s:4:\"tmpl\";i:1326;s:2:\"id\";i:22812;s:5:\"title\";s:35:\"Full Screen | Verification | Winery\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/67-Winery-Verification.jpg\";s:12:\"tmpl_created\";i:1647761384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/full-screen-verification-winery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:24:\"[\"Alert\",\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:18:{s:4:\"tmpl\";i:1327;s:2:\"id\";i:22822;s:5:\"title\";s:36:\"Fly-In | Subscription | Nutritionist\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/nutritionist-69-small.jpg\";s:12:\"tmpl_created\";i:1647762620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-subscription-nutritionist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Food\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:18:{s:4:\"tmpl\";i:1328;s:2:\"id\";i:22833;s:5:\"title\";s:40:\"Classic | Subscription | App &#038; SaaS\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/app-70-small.jpg\";s:12:\"tmpl_created\";i:1647762955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscription-app-saas/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:14:\"[\"App\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:18:{s:4:\"tmpl\";i:1329;s:2:\"id\";i:22844;s:5:\"title\";s:41:\"Bottom Bar | Discount | Handmade Cupcakes\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/72-Handmade-Cupcakes-Discount.jpg\";s:12:\"tmpl_created\";i:1647763350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-cupcakes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:21:\"[\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:18:{s:4:\"tmpl\";i:1330;s:2:\"id\";i:22855;s:5:\"title\";s:40:\"Bottom Bar | Subscription | Fashion Blog\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-blog-75-small.jpg\";s:12:\"tmpl_created\";i:1647763907;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/bottom-bar-subscription-fashion-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:30:\"[\"Blog\",\"Fashion\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:18:{s:4:\"tmpl\";i:1331;s:2:\"id\";i:22866;s:5:\"title\";s:28:\"Fly-In | CTA | Private Tutor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-77-small.jpg\";s:12:\"tmpl_created\";i:1647764062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-cta-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:18:{s:4:\"tmpl\";i:1332;s:2:\"id\";i:22876;s:5:\"title\";s:30:\"Classic | CTA | Tennis Academy\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/78-Tennis-Academy-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765192;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-tennis-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:18:{s:4:\"tmpl\";i:1333;s:2:\"id\";i:22887;s:5:\"title\";s:31:\"Fly-In | CTA | Shared Workspace\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/shared-workspace-79-small.jpg\";s:12:\"tmpl_created\";i:1647765419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-shared-workspace/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Business\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:18:{s:4:\"tmpl\";i:1334;s:2:\"id\";i:22899;s:5:\"title\";s:30:\"Bottom Bar | CTA | Art Gallery\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/80-Art-Gallery-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765652;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/bottom-bar-cta-art-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:13:\"[\"Art\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:18:{s:4:\"tmpl\";i:1335;s:2:\"id\";i:22910;s:5:\"title\";s:44:\"Fly-In | Subscription | Hiking Tours Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/hiking-tours-company-81-small.jpg\";s:12:\"tmpl_created\";i:1647765835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscription-hiking-tours-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Subscribe\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:18:{s:4:\"tmpl\";i:1336;s:2:\"id\";i:22921;s:5:\"title\";s:26:\"Classic | CTA | Music Band\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/music-band-82-small.jpg\";s:12:\"tmpl_created\";i:1647769462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/classic-cta-music-band/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Marketing\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:18:{s:4:\"tmpl\";i:1337;s:2:\"id\";i:22935;s:5:\"title\";s:35:\"Classic | CTA | Computer Technician\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/comuter-technician-83-small.jpg\";s:12:\"tmpl_created\";i:1647769843;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-computer-technician/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:18:{s:4:\"tmpl\";i:1338;s:2:\"id\";i:22945;s:5:\"title\";s:37:\"Classic | Discount | Delivery Company\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/delivery-company-88-small.jpg\";s:12:\"tmpl_created\";i:1647770834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-delivery-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Discount\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:18:{s:4:\"tmpl\";i:1339;s:2:\"id\";i:22959;s:5:\"title\";s:29:\"Classic | Discount | Eco Shop\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/echo-shop-89-small.jpg\";s:12:\"tmpl_created\";i:1647771211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-discount-eco-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:18:{s:4:\"tmpl\";i:1340;s:2:\"id\";i:22972;s:5:\"title\";s:54:\"Fly-In | Subscription | Health &#038; Mindfulness Blog\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small.jpg\";s:12:\"tmpl_created\";i:1647771461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/fly-in-subscription-health-mindfulness-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:21:\"[\"Health\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:18:{s:4:\"tmpl\";i:1341;s:2:\"id\";i:22982;s:5:\"title\";s:31:\"Full Screen | Menu | Art Museum\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/art-museum-112-small.jpg\";s:12:\"tmpl_created\";i:1647771938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-art-museum/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:18:{s:4:\"tmpl\";i:1342;s:2:\"id\";i:22992;s:5:\"title\";s:40:\"Classic | Discount | Urban Clothing Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small-1.jpg\";s:12:\"tmpl_created\";i:1647773067;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-urban-clothing-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Discount\",\"Ecommerce\",\"Fashion\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:18:{s:4:\"tmpl\";i:1343;s:2:\"id\";i:23004;s:5:\"title\";s:60:\"Full Screen | Menu | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small-1.jpg\";s:12:\"tmpl_created\";i:1647773366;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:155:\"https://library.elementor.com/popups/full-screen-menu-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:18:{s:4:\"tmpl\";i:1344;s:2:\"id\";i:23015;s:5:\"title\";s:62:\"Bottom Bar | Contact | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small.jpg\";s:12:\"tmpl_created\";i:1647773492;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/bottom-bar-contact-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:23:\"[\"Contact\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:18:{s:4:\"tmpl\";i:1345;s:2:\"id\";i:23025;s:5:\"title\";s:32:\"Full Screen | Menu | Flower Shop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small.jpg\";s:12:\"tmpl_created\";i:1647773820;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:18:{s:4:\"tmpl\";i:1346;s:2:\"id\";i:23037;s:5:\"title\";s:36:\"Classic | Subscription | Flower Shop\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small-1.jpg\";s:12:\"tmpl_created\";i:1647773949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:18:{s:4:\"tmpl\";i:1347;s:2:\"id\";i:23056;s:5:\"title\";s:48:\"Classic | Discount | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small-1.jpg\";s:12:\"tmpl_created\";i:1647774468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-discount-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:18:{s:4:\"tmpl\";i:1348;s:2:\"id\";i:23067;s:5:\"title\";s:37:\"Fly-In | Menu | Baby Sleep Consultant\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small-1.jpg\";s:12:\"tmpl_created\";i:1647778954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:18:{s:4:\"tmpl\";i:1349;s:2:\"id\";i:23077;s:5:\"title\";s:46:\"Classic | Subscription | Baby Sleep Consultant\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small.jpg\";s:12:\"tmpl_created\";i:1647779074;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/classic-subscription-baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:12:\"[\"Discount\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:18:{s:4:\"tmpl\";i:1350;s:2:\"id\";i:23090;s:5:\"title\";s:33:\"Full Screen | Menu | Luxury Hotel\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small.jpg\";s:12:\"tmpl_created\";i:1647779390;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/full-screen-menu-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:18:{s:4:\"tmpl\";i:1351;s:2:\"id\";i:23100;s:5:\"title\";s:31:\"Fly-In | Booking | Luxury Hotel\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small-1.jpg\";s:12:\"tmpl_created\";i:1647779500;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-booking-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Booking\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:18:{s:4:\"tmpl\";i:1352;s:2:\"id\";i:23109;s:5:\"title\";s:38:\"Full Screen | Menu | Design Conference\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small.jpg\";s:12:\"tmpl_created\";i:1647779675;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:18:{s:4:\"tmpl\";i:1353;s:2:\"id\";i:23120;s:5:\"title\";s:41:\"Full Screen | Booking | Design Conference\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small-1.jpg\";s:12:\"tmpl_created\";i:1647779793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/full-screen-booking-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Booking\",\"Conference\",\"Creative\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:18:{s:4:\"tmpl\";i:1354;s:2:\"id\";i:23129;s:5:\"title\";s:29:\"Slide-In | Menu | VR Headsets\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small.jpg\";s:12:\"tmpl_created\";i:1647781211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-menu-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:18:{s:4:\"tmpl\";i:1355;s:2:\"id\";i:23139;s:5:\"title\";s:31:\"Classic | Contact | VR Headsets\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small-1.jpg\";s:12:\"tmpl_created\";i:1647781384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:18:{s:4:\"tmpl\";i:1356;s:2:\"id\";i:23149;s:5:\"title\";s:38:\"Slide-In | Menu | Portrait Photography\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Menu.jpg\";s:12:\"tmpl_created\";i:1647782336;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/slide-in-menu-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:18:{s:4:\"tmpl\";i:1357;s:2:\"id\";i:23159;s:5:\"title\";s:47:\"Hello Bar | Subscription | Portrait Photography\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Subscription.jpg\";s:12:\"tmpl_created\";i:1647782478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/hello-bar-subscription-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Blog\",\"Photography\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:18:{s:4:\"tmpl\";i:1358;s:2:\"id\";i:23169;s:5:\"title\";s:32:\"Full Screen | Menu | English Pub\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Menu.jpg\";s:12:\"tmpl_created\";i:1647782664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:18:{s:4:\"tmpl\";i:1359;s:2:\"id\";i:23179;s:5:\"title\";s:32:\"Classic | Discount | English Pub\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Discount.jpg\";s:12:\"tmpl_created\";i:1647782796;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:18:{s:4:\"tmpl\";i:1360;s:2:\"id\";i:23189;s:5:\"title\";s:27:\"Full Screen | Menu | Singer\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Menu.jpg\";s:12:\"tmpl_created\";i:1647783070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/full-screen-menu-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:29:\"[\"Fullscreen\",\"menu\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:18:{s:4:\"tmpl\";i:1361;s:2:\"id\";i:23200;s:5:\"title\";s:31:\"Classic | Subscription | Singer\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Subscription.jpg\";s:12:\"tmpl_created\";i:1647783249;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-subscription-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Music\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:18:{s:4:\"tmpl\";i:1362;s:2:\"id\";i:23210;s:5:\"title\";s:38:\"Full Screen | Menu | Virtual Assistant\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistnt-73-small.jpg\";s:12:\"tmpl_created\";i:1647784292;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:18:{s:4:\"tmpl\";i:1363;s:2:\"id\";i:23223;s:5:\"title\";s:39:\"Hello Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/73-Virtual-Assistant-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647784616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-contact-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:37:\"[\"Contact\",\"Psychologist\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:18:{s:4:\"tmpl\";i:1364;s:2:\"id\";i:23234;s:5:\"title\";s:32:\"Slide-In  | Menu | Personal Chef\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Menu.jpg\";s:12:\"tmpl_created\";i:1647798194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-menu-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:18:{s:4:\"tmpl\";i:1365;s:2:\"id\";i:23244;s:5:\"title\";s:29:\"Classic | CTA | Personal Chef\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647798297;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Booking\",\"Chef\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:18:{s:4:\"tmpl\";i:1366;s:2:\"id\";i:23254;s:5:\"title\";s:31:\"Full Screen | Menu | Food Truck\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small-1.jpg\";s:12:\"tmpl_created\";i:1647798447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:18:{s:4:\"tmpl\";i:1367;s:2:\"id\";i:23265;s:5:\"title\";s:30:\"Fly-In | Discount | Food Truck\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small.jpg\";s:12:\"tmpl_created\";i:1647798657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:18:{s:4:\"tmpl\";i:1369;s:2:\"id\";i:23323;s:5:\"title\";s:28:\"Classic | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-6-Small.jpg\";s:12:\"tmpl_created\";i:1647855505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:18:{s:4:\"tmpl\";i:1370;s:2:\"id\";i:23329;s:5:\"title\";s:29:\"Slide-In | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-5-Small.jpg\";s:12:\"tmpl_created\";i:1647855865;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:18:{s:4:\"tmpl\";i:1371;s:2:\"id\";i:23335;s:5:\"title\";s:31:\"Slide-In | CTA | Black Friday 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-1-Small.jpg\";s:12:\"tmpl_created\";i:1647856357;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-cta-black-friday-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:18:{s:4:\"tmpl\";i:1372;s:2:\"id\";i:23341;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-3-Small.jpg\";s:12:\"tmpl_created\";i:1647856493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:18:{s:4:\"tmpl\";i:1373;s:2:\"id\";i:23347;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-2-Small.jpg\";s:12:\"tmpl_created\";i:1647856891;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:18:{s:4:\"tmpl\";i:1374;s:2:\"id\";i:23354;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 4\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-4-Small.jpg\";s:12:\"tmpl_created\";i:1647856996;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:18:{s:4:\"tmpl\";i:1375;s:2:\"id\";i:23394;s:5:\"title\";s:27:\"Classic | CTA | Halloween 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-3-Small.jpg\";s:12:\"tmpl_created\";i:1647857351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-halloween-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:31:\"[\"cta\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:18:{s:4:\"tmpl\";i:1376;s:2:\"id\";i:23401;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-2-Small.jpg\";s:12:\"tmpl_created\";i:1647857567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:18:{s:4:\"tmpl\";i:1377;s:2:\"id\";i:23407;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-1-Small.jpg\";s:12:\"tmpl_created\";i:1647857814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:18:{s:4:\"tmpl\";i:1378;s:2:\"id\";i:23416;s:5:\"title\";s:31:\"Fly-In | Discount | Halloween 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-5-Small.jpg\";s:12:\"tmpl_created\";i:1647858024;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-discount-halloween-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:44:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:18:{s:4:\"tmpl\";i:1379;s:2:\"id\";i:23422;s:5:\"title\";s:36:\"Classic | Subscription | Halloween 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-4-Small.jpg\";s:12:\"tmpl_created\";i:1647858246;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-halloween-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:48:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:18:{s:4:\"tmpl\";i:1380;s:2:\"id\";i:23471;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-2-Small.jpg\";s:12:\"tmpl_created\";i:1647859193;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:18:{s:4:\"tmpl\";i:1381;s:2:\"id\";i:23477;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-4-Small.jpg\";s:12:\"tmpl_created\";i:1647859838;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:18:{s:4:\"tmpl\";i:1382;s:2:\"id\";i:23483;s:5:\"title\";s:26:\"Fly-In | CTA | Christmas 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-1-Small.jpg\";s:12:\"tmpl_created\";i:1647860157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/fly-in-cta-christmas-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:18:{s:4:\"tmpl\";i:1383;s:2:\"id\";i:23489;s:5:\"title\";s:33:\"Slide-In | Discount | Christmas 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-5-Small.jpg\";s:12:\"tmpl_created\";i:1647860302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-christmas-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:18:{s:4:\"tmpl\";i:1384;s:2:\"id\";i:23496;s:5:\"title\";s:32:\"Classic | Discount | Christmas 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-3-Small.jpg\";s:12:\"tmpl_created\";i:1647860454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-christmas-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Christmas\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:18:{s:4:\"tmpl\";i:1385;s:2:\"id\";i:23523;s:5:\"title\";s:30:\"Classic | CTA | Valentines Day\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-2-Small.jpg\";s:12:\"tmpl_created\";i:1647860912;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-valentines-day/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:18:{s:4:\"tmpl\";i:1386;s:2:\"id\";i:23529;s:5:\"title\";s:39:\"Hello Bar | Discount | Valentines Day 2\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-1-Small.jpg\";s:12:\"tmpl_created\";i:1647861064;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-discount-valentines-day-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:30:\"[\"Discount\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:18:{s:4:\"tmpl\";i:1387;s:2:\"id\";i:23536;s:5:\"title\";s:32:\"Classic | CTA | Valentines Day 3\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-3-Small.jpg\";s:12:\"tmpl_created\";i:1647861536;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-cta-valentines-day-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:18:{s:4:\"tmpl\";i:1388;s:2:\"id\";i:23586;s:5:\"title\";s:51:\"Fly-In | Subscribe | Health &#038; Wellness Company\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/35-Subscribe-Health-Wellness-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647862008;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscribe-health-wellness-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"Business\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:18:{s:4:\"tmpl\";i:1389;s:2:\"id\";i:23592;s:5:\"title\";s:34:\"Classic | Subscribe | Tech Company\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/36-Subscribe-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647866706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-subscribe-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:18:{s:4:\"tmpl\";i:1390;s:2:\"id\";i:23598;s:5:\"title\";s:36:\"Classic | Contact Us | Fight Classes\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/37-Contact-Us-Fight-Classes-Small.jpg\";s:12:\"tmpl_created\";i:1647866869;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-contact-us-fight-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:18:{s:4:\"tmpl\";i:1391;s:2:\"id\";i:23611;s:5:\"title\";s:31:\"Classic | CTA | Mochi Shop Sale\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2022/03/39-Click-Through-Mochi-Shop-Sale-Small.jpg\";s:12:\"tmpl_created\";i:1647867750;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-cta-mochi-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"cta\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:18:{s:4:\"tmpl\";i:1392;s:2:\"id\";i:23618;s:5:\"title\";s:28:\"Classic | CTA | Fashion Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/40-Click-Through-Fashion-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647868251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:18:{s:4:\"tmpl\";i:1393;s:2:\"id\";i:23624;s:5:\"title\";s:29:\"Fly-In | Login | Tech Company\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/41-Login-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647868704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/fly-in-login-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:18:{s:4:\"tmpl\";i:1394;s:2:\"id\";i:23630;s:5:\"title\";s:36:\"Fly-In | Verification | Liquor Store\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/42-Verification-Liquor-Store-Small.jpg\";s:12:\"tmpl_created\";i:1647870308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-verification-liquor-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:18:{s:4:\"tmpl\";i:1395;s:2:\"id\";i:23636;s:5:\"title\";s:39:\"Hello Bar | Subscribe | Online Magazine\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/44-Subscribe-Online-Magazine-Small.jpg\";s:12:\"tmpl_created\";i:1647870465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-subscribe-online-magazine/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:18:{s:4:\"tmpl\";i:1396;s:2:\"id\";i:23642;s:5:\"title\";s:27:\"Fly-In | Login | Health Spa\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/43-Login-Health-Spa-Small.jpg\";s:12:\"tmpl_created\";i:1647872427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-login-health-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Login\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:18:{s:4:\"tmpl\";i:1397;s:2:\"id\";i:23648;s:5:\"title\";s:33:\"Fly-In | Verification | Wine Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/45-Verification-Wine-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647872627;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/fly-in-verification-wine-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:18:{s:4:\"tmpl\";i:1421;s:2:\"id\";i:24235;s:5:\"title\";s:24:\"Ladydog Club &#8211; NFT\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/05/Ladydog_Club.jpg\";s:12:\"tmpl_created\";i:1651525072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/ladydog-club-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:18:{s:4:\"tmpl\";i:1422;s:2:\"id\";i:24166;s:5:\"title\";s:15:\"Dot &#8211; NFT\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/05/Dot-250_280.jpg\";s:12:\"tmpl_created\";i:1651525117;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/dot-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:18:{s:4:\"tmpl\";i:1423;s:2:\"id\";i:24191;s:5:\"title\";s:28:\"Cosmic Neighbors &#8211; NFT\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Cosmic_Neighbors-250_280.jpg\";s:12:\"tmpl_created\";i:1651525124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/cosmic-neighbors-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:18:{s:4:\"tmpl\";i:1424;s:2:\"id\";i:24255;s:5:\"title\";s:30:\"Happy Food Friends &#8211; NFT\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/05/Featured_Image.jpg\";s:12:\"tmpl_created\";i:1651525475;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/happy-food-friends-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:18:{s:4:\"tmpl\";i:1443;s:2:\"id\";i:24599;s:5:\"title\";s:27:\"Wireframe &#8211; Courses 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Courses-1.jpg\";s:12:\"tmpl_created\";i:1653989626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-courses-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:180:\"[\"About\",\"Academy\",\"Booking\",\"Business\",\"Course Online\",\"Features\",\"Footer\",\"Landing Pages\",\"Online Service\",\"Professional\",\"School\",\"Services\",\"Subscribe\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:119;a:18:{s:4:\"tmpl\";i:1444;s:2:\"id\";i:24614;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1-2.jpg\";s:12:\"tmpl_created\";i:1653990084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:139:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:18:{s:4:\"tmpl\";i:1445;s:2:\"id\";i:24629;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2-2.jpg\";s:12:\"tmpl_created\";i:1653990132;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:123:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:18:{s:4:\"tmpl\";i:1446;s:2:\"id\";i:24644;s:5:\"title\";s:27:\"Wireframe &#8211; Webinar 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Webinar-1.jpg\";s:12:\"tmpl_created\";i:1653990164;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-webinar-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:177:\"[\"About\",\"Academy\",\"Booking\",\"Conference\",\"Course Online\",\"Education\",\"Features\",\"Footer\",\"Form\",\"Landing Pages\",\"Online Event\",\"Online Service\",\"Subscribe\",\"Virtual\",\"Webinar\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:18:{s:4:\"tmpl\";i:1447;s:2:\"id\";i:24655;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3-2.jpg\";s:12:\"tmpl_created\";i:1653990198;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:143:\"[\"About\",\"Agency\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Portfolio\",\"Professional\",\"Project\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:18:{s:4:\"tmpl\";i:1448;s:2:\"id\";i:24677;s:5:\"title\";s:28:\"Wireframe &#8211; Services 4\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-4.jpg\";s:12:\"tmpl_created\";i:1653990233;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:102:\"[\"About\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:18:{s:4:\"tmpl\";i:1449;s:2:\"id\";i:24687;s:5:\"title\";s:28:\"Wireframe &#8211; Products 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Products-1.jpg\";s:12:\"tmpl_created\";i:1653990273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-products-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:128:\"[\"About\",\"Booking\",\"Business\",\"Clients\",\"Ecommerce\",\"Features\",\"Footer\",\"Landing Pages\",\"Products\",\"Sales\",\"Shop\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:125;a:18:{s:4:\"tmpl\";i:1450;s:2:\"id\";i:24706;s:5:\"title\";s:28:\"Wireframe &#8211; Services 5\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-5.jpg\";s:12:\"tmpl_created\";i:1653990322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:149:\"[\"About\",\"Booking\",\"Consulting\",\"Contact\",\"Doctor\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:126;a:18:{s:4:\"tmpl\";i:1451;s:2:\"id\";i:23604;s:5:\"title\";s:38:\"Classic | Subscribe | Nail Polish Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/38-Subscribe-Nail-Polish-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1660205114;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-subscribe-nail-polish-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:18:{s:4:\"tmpl\";i:1452;s:2:\"id\";i:23047;s:5:\"title\";s:46:\"Fly-In | Contact | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small.jpg\";s:12:\"tmpl_created\";i:1660205149;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/fly-in-contact-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Contact\",\"Ebook\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:18:{s:4:\"tmpl\";i:1199;s:2:\"id\";i:18839;s:5:\"title\";s:27:\"Hello Bar | CTA | eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/05/350x250.png\";s:12:\"tmpl_created\";i:1621870603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/hello-bar-cta-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:41:\"[\"Ecommerce\",\"Online Shop\",\"Sale\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:18:{s:4:\"tmpl\";i:1247;s:2:\"id\";i:21907;s:5:\"title\";s:50:\"Fly-In | Team Details  | Electronic Music Festival\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/Kit-8-electronic-music-festival-CTA-image-1.jpg\";s:12:\"tmpl_created\";i:1646660881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/fly-in-team-details-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:18:{s:4:\"tmpl\";i:1253;s:2:\"id\";i:22162;s:5:\"title\";s:46:\"Full Screen | Menu | Electronic Music Festival\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/8-music-festival-Team-Details.jpg\";s:12:\"tmpl_created\";i:1647272934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:154:\"https://library.elementor.com/popups/full-screen-menu-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:18:{s:4:\"tmpl\";i:1254;s:2:\"id\";i:22172;s:5:\"title\";s:45:\"Classic | Discount | Health &#038; Beauty Spa\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/health-beauty-spa-small.jpg\";s:12:\"tmpl_created\";i:1647273547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-discount-popup-health-beauty-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:36:\"[\"Hair\",\"Health\",\"Sales\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:18:{s:4:\"tmpl\";i:1255;s:2:\"id\";i:22183;s:5:\"title\";s:44:\"Hello Bar | CTA | Environmental Organization\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/11-Environmental-Organization-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647274384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/hello-bar-cta-popup-environmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:18:{s:4:\"tmpl\";i:1256;s:2:\"id\";i:22195;s:5:\"title\";s:39:\"Classic | Discount | Italian Restaurant\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/restaurant-small.jpg\";s:12:\"tmpl_created\";i:1647329432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-discount-popup-italian-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Restaurant\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:134;a:18:{s:4:\"tmpl\";i:1257;s:2:\"id\";i:22210;s:5:\"title\";s:45:\"Bottom Bar | Discount | Technology Conference\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tech-conference-small.jpg\";s:12:\"tmpl_created\";i:1647330423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/bottom-bar-discount-popup-technology-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:38:\"[\"Conference\",\"Sales\",\"Save the Date\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:18:{s:4:\"tmpl\";i:1258;s:2:\"id\";i:22221;s:5:\"title\";s:32:\"Hello Bar | Menu | Tattoo Studio\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small-1.jpg\";s:12:\"tmpl_created\";i:1647330705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/hello-bar-menu-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:17:\"[\"Header\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:18:{s:4:\"tmpl\";i:1259;s:2:\"id\";i:22231;s:5:\"title\";s:37:\"Full Screen | Booking | Tattoo Studio\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small.jpg\";s:12:\"tmpl_created\";i:1647331823;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-booking-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:18:{s:4:\"tmpl\";i:1260;s:2:\"id\";i:22251;s:5:\"title\";s:34:\"Classic | Discount | Dental Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/dental-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647332171;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-popup-dental-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Health\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:18:{s:4:\"tmpl\";i:1261;s:2:\"id\";i:22261;s:5:\"title\";s:34:\"Slide-In | Contact | Makeup Artist\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/20-Makeup-Artist-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647333946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/slide-in-contact-popup-makeup-artist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:18:{s:4:\"tmpl\";i:1262;s:2:\"id\";i:22271;s:5:\"title\";s:24:\"Fly-In | CTA | Headphone\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/headphones-1-small.jpg\";s:12:\"tmpl_created\";i:1647334784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-cta-popup-headphone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:41:\"[\"cta\",\"Ecommerce\",\"Marketing\",\"Product\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:18:{s:4:\"tmpl\";i:1263;s:2:\"id\";i:22277;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/online-course-2.jpg\";s:12:\"tmpl_created\";i:1647337110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-popup-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Course Online\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:18:{s:4:\"tmpl\";i:1264;s:2:\"id\";i:22283;s:5:\"title\";s:40:\"Bottom Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistant-3.jpg\";s:12:\"tmpl_created\";i:1647337517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-contact-popup-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:18:{s:4:\"tmpl\";i:1265;s:2:\"id\";i:22289;s:5:\"title\";s:32:\"Fly-In | Contact | Private Tutor\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-4.jpg\";s:12:\"tmpl_created\";i:1647337676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-contact-popup-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:27:\"[\"Contact\",\"Course Online\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:143;a:18:{s:4:\"tmpl\";i:1266;s:2:\"id\";i:22295;s:5:\"title\";s:31:\"Classic |  Login | Login Travel\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/login-travel-6.jpg\";s:12:\"tmpl_created\";i:1647339467;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-login-popup-login-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:144;a:18:{s:4:\"tmpl\";i:1267;s:2:\"id\";i:22301;s:5:\"title\";s:36:\"Full Screen | Login | Login Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/login-business-7.jpg\";s:12:\"tmpl_created\";i:1647339782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/full-screen-login-popup-login-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:16:\"[\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:145;a:18:{s:4:\"tmpl\";i:1268;s:2:\"id\";i:22307;s:5:\"title\";s:28:\"Classic | Login | Login Blog\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/login-blog-8.jpg\";s:12:\"tmpl_created\";i:1647339986;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-login-popup-login-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:18:{s:4:\"tmpl\";i:1269;s:2:\"id\";i:22313;s:5:\"title\";s:31:\"Classic | Login | Login Fashion\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/login-fashion-9.jpg\";s:12:\"tmpl_created\";i:1647340204;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-login-popup-login-fashion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Fashion\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:18:{s:4:\"tmpl\";i:1270;s:2:\"id\";i:22319;s:5:\"title\";s:40:\"Classic |  Login | Login Design Platform\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/03/login-design-platform-10.jpg\";s:12:\"tmpl_created\";i:1647340531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-login-popup-login-design-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Design\",\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:18:{s:4:\"tmpl\";i:1271;s:2:\"id\";i:22325;s:5:\"title\";s:36:\"Fly-In | Contact | Digital Marketing\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-marketing-11.jpg\";s:12:\"tmpl_created\";i:1647340770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-contact-popup-digital-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:51:\"[\"Business\",\"Contact\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:18:{s:4:\"tmpl\";i:1272;s:2:\"id\";i:22331;s:5:\"title\";s:36:\"Fly-In | CTA | Dog Cat Food Delivery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/dog-cat-food-delivery-5.jpg\";s:12:\"tmpl_created\";i:1647341069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-cta-popup-dog-cat-food-delivery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Delivery Service\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:18:{s:4:\"tmpl\";i:1273;s:2:\"id\";i:22337;s:5:\"title\";s:37:\"Full Screen | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-12.jpg\";s:12:\"tmpl_created\";i:1647341370;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-contact-popup-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:18:{s:4:\"tmpl\";i:1274;s:2:\"id\";i:22343;s:5:\"title\";s:44:\"Classic | Contact | Support Product Platform\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/03/support-13.jpg\";s:12:\"tmpl_created\";i:1647341972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-contact-support-product-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Contact\",\"Support\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:18:{s:4:\"tmpl\";i:1275;s:2:\"id\";i:22371;s:5:\"title\";s:38:\"Full Screen | Contact | Small Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/small-business-14.jpg\";s:12:\"tmpl_created\";i:1647342508;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-contact-small-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:40:\"[\"Business\",\"Contact\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:18:{s:4:\"tmpl\";i:1276;s:2:\"id\";i:22377;s:5:\"title\";s:31:\"Classic | Contact | Online Shop\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/online-shop-15.jpg\";s:12:\"tmpl_created\";i:1647352786;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-online-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:18:{s:4:\"tmpl\";i:1277;s:2:\"id\";i:22383;s:5:\"title\";s:40:\"Classic | Booking | Children Optometrist\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/children-optometrist-16.jpg\";s:12:\"tmpl_created\";i:1647352963;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-booking-children-optometrist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:53:\"[\"Booking\",\"Business\",\"Contact\",\"Education\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:18:{s:4:\"tmpl\";i:1278;s:2:\"id\";i:22389;s:5:\"title\";s:28:\"Fly-In | Contact | Open Week\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/03/open-week17.jpg\";s:12:\"tmpl_created\";i:1647353281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-open-week/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:34:\"[\"Business\",\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:18:{s:4:\"tmpl\";i:1279;s:2:\"id\";i:22397;s:5:\"title\";s:43:\"Full Screen | CTA | Plant Pots Online Store\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/plant-pots-online-store-18.jpg\";s:12:\"tmpl_created\";i:1647353429;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-cta-plant-pots-online-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:33:\"[\"Ecommerce\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:18:{s:4:\"tmpl\";i:1054;s:2:\"id\";i:15414;s:5:\"title\";s:32:\"Classic | Contact | Dance Studio\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/PopUp.jpg\";s:12:\"tmpl_created\";i:1603180596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-dance-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:650;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:18:{s:4:\"tmpl\";i:1398;s:2:\"id\";i:23687;s:5:\"title\";s:32:\"Pizza Promotion &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/48-Pizza-Promotion.jpg\";s:12:\"tmpl_created\";i:1649670575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/pizza-promotion-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:92:\"[\"Business\",\"Cooking\",\"Delivery\",\"Discount\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:159;a:18:{s:4:\"tmpl\";i:1400;s:2:\"id\";i:23751;s:5:\"title\";s:33:\"Baby Sleep Webinar &#8211; Events\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/63-Baby-Sleep-Webinar.jpg\";s:12:\"tmpl_created\";i:1649676065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/baby-sleep-webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:227:\"[\"Baby\",\"Booking\",\"Business\",\"Children\",\"Course Online\",\"Education\",\"Events\",\"Health\",\"Landing Pages\",\"Life Coach\",\"Lifestyle\",\"Online Event\",\"Online Service\",\"Parenting\",\"Professional\",\"Remote\",\"Services\",\"Training\",\"Webinar\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:18:{s:4:\"tmpl\";i:1401;s:2:\"id\";i:23776;s:5:\"title\";s:34:\"Ski Hotel Promotion &#8211; Travel\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/04/64-Ski-Hotel-Promotion.jpg\";s:12:\"tmpl_created\";i:1649691720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/ski-hotel-promotion-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:118:\"[\"Accommodation\",\"Booking\",\"Discount. Landing Pages\",\"Lifestyle\",\"Luxury\",\"Services\",\"Spa\",\"Travel\",\"Trip\",\"Vacation\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:161;a:18:{s:4:\"tmpl\";i:1402;s:2:\"id\";i:23804;s:5:\"title\";s:30:\"Cake Delivery &#8211; Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/04/67-Cake-Delivery.jpg\";s:12:\"tmpl_created\";i:1649692909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/cake-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:101:\"[\"Bakery\",\"Business\",\"Cake\",\"Cooking\",\"Delivery\",\"Discount\",\"Food\",\"Landing Pages\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:18:{s:4:\"tmpl\";i:1403;s:2:\"id\";i:23832;s:5:\"title\";s:32:\"Furniture Store &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/87-Furniture-Store.jpg\";s:12:\"tmpl_created\";i:1649694812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/furniture-store-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:232:\"[\"Architecture\",\"Art\",\"Business\",\"Construction\",\"Coupon\",\"Creative\",\"Decor\",\"Designer\",\"Discount\",\"Fashion\",\"Furniture Design\",\"Home\",\"House\",\"Interior Design\",\"Landing Pages\",\"Lifestyle\",\"Products\",\"Professional\",\"Services\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:163;a:18:{s:4:\"tmpl\";i:1404;s:2:\"id\";i:23746;s:5:\"title\";s:22:\"Nails &#8211; Business\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/04/62-Nails-1.jpg\";s:12:\"tmpl_created\";i:1649704635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/nails-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:173:\"[\"Art\",\"Beauty\",\"Business\",\"Colorful\",\"Cosmetics\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Girly\",\"Landing Pages\",\"Lifestyle\",\"Manicure\",\"Modern\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:164;a:18:{s:4:\"tmpl\";i:1405;s:2:\"id\";i:23846;s:5:\"title\";s:29:\"Music Festival &#8211; Events\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/04/88-Music-Festival.jpg\";s:12:\"tmpl_created\";i:1649707763;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/music-festival-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:128:\"[\"Author\",\"Booking\",\"Business\",\"Creative\",\"Discount\",\"Events\",\"Landing Pages\",\"Music\",\"Online\",\"Online Event\",\"Party\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:165;a:18:{s:4:\"tmpl\";i:1406;s:2:\"id\";i:23872;s:5:\"title\";s:40:\"Fashion Styling Course &#8211; Education\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/89-Fashion-Styling-Course.jpg\";s:12:\"tmpl_created\";i:1649708569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/fashion-styling-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:173:\"[\"Aesthetic\",\"Art\",\"Beauty\",\"Business\",\"Course Online\",\"Creative\",\"Discount\",\"Education\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Online\",\"Online Service\",\"Stylist\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:166;a:18:{s:4:\"tmpl\";i:1407;s:2:\"id\";i:23897;s:5:\"title\";s:33:\"Bags Online Shop &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/04/90-Bags-Online-Shop.jpg\";s:12:\"tmpl_created\";i:1649709513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/bags-online-shop-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:170:\"[\"Art\",\"Bag\",\"Business\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Luxury\",\"Modern\",\"Online\",\"Online Shop\",\"Products\",\"Sales\",\"Shop\",\"Stylist\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:18:{s:4:\"tmpl\";i:1408;s:2:\"id\";i:23932;s:5:\"title\";s:32:\"Cooking Academy &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/91-Cooking-Academy.jpg\";s:12:\"tmpl_created\";i:1649710216;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/cooking-academy-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:145:\"[\"Academy\",\"Booking\",\"Business\",\"Chef\",\"Cooking\",\"Education\",\"Food\",\"Free Trial\",\"Landing Pages\",\"Professional\",\"School\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:18:{s:4:\"tmpl\";i:1409;s:2:\"id\";i:23970;s:5:\"title\";s:45:\"Ophthalmology Medical Clinic &#8211; Business\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/04/92-Ophthalmology-Medical-Clinic.jpg\";s:12:\"tmpl_created\";i:1649711096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/ophthalmology-medical-clinic-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:165:\"[\"About\",\"Business\",\"Care\",\"Consulting\",\"Eye\",\"Free Trial\",\"Glasses\",\"Health\",\"Landing Pages\",\"Lifestyle\",\"Medical\",\"Modern\",\"Optometrist\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:169;a:18:{s:4:\"tmpl\";i:1425;s:2:\"id\";i:24331;s:5:\"title\";s:24:\"Wireframe &#8211; Home 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-1.jpg\";s:12:\"tmpl_created\";i:1653988363;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:170;a:18:{s:4:\"tmpl\";i:1218;s:2:\"id\";i:20792;s:5:\"title\";s:26:\"Luxury Car &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/11/250x280-1.jpg\";s:12:\"tmpl_created\";i:1636903770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/luxury-car-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:54:\"[\"car\",\"Ecommerce\",\"Landing Pages\",\"Luxury\",\"Product\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:171;a:18:{s:4:\"tmpl\";i:1428;s:2:\"id\";i:24398;s:5:\"title\";s:25:\"Wireframe &#8211; About 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-1.jpg\";s:12:\"tmpl_created\";i:1653988534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:83:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Professional\",\"Services\",\"Team\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:172;a:18:{s:4:\"tmpl\";i:991;s:2:\"id\";i:13413;s:5:\"title\";s:33:\"Classic | Contact | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Help.jpg\";s:12:\"tmpl_created\";i:1587474761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:369;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:18:{s:4:\"tmpl\";i:1053;s:2:\"id\";i:15272;s:5:\"title\";s:32:\"Classic | Contact | Psychologist\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/PopUp.png\";s:12:\"tmpl_created\";i:1600170487;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:312;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:18:{s:4:\"tmpl\";i:899;s:2:\"id\";i:11839;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";i:1569430015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:20;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:18:{s:4:\"tmpl\";i:1433;s:2:\"id\";i:24477;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-2.jpg\";s:12:\"tmpl_created\";i:1653988835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:176;a:18:{s:4:\"tmpl\";i:1205;s:2:\"id\";i:20233;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633881371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:18:{s:4:\"tmpl\";i:1214;s:2:\"id\";i:20539;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:18:{s:4:\"tmpl\";i:1224;s:2:\"id\";i:21013;s:5:\"title\";s:24:\"Restaurant &#8211; About\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/12/7-About-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638795588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:36:\"[\"About\",\"Chef\",\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:179;a:18:{s:4:\"tmpl\";i:992;s:2:\"id\";i:13402;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/04/Popup-Course-Completed.jpg\";s:12:\"tmpl_created\";i:1587474772;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:582;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:18:{s:4:\"tmpl\";i:1206;s:2:\"id\";i:20254;s:5:\"title\";s:41:\"Digital Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Digital-Marketing-Agency-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/digital-marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:65:\"[\"Agency\",\"Business\",\"Digital Agency\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:18:{s:4:\"tmpl\";i:1235;s:2:\"id\";i:21281;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/16-Services-Law-firm.jpg\";s:12:\"tmpl_created\";i:1638819128;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/law-firm-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Consulting\",\"Law\",\"Law Firm\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:182;a:18:{s:4:\"tmpl\";i:1017;s:2:\"id\";i:14111;s:5:\"title\";s:36:\"Classic | Japanese restaurant | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1592300400;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:697;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:183;a:18:{s:4:\"tmpl\";i:1213;s:2:\"id\";i:20509;s:5:\"title\";s:40:\"Dogs Adoption &#8211; Social Involvement\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/10/Dog-Adoption-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/dogs-adoption-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:49:\"[\"Adoption\",\"Involvement\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:184;a:18:{s:4:\"tmpl\";i:1233;s:2:\"id\";i:21205;s:5:\"title\";s:29:\"Photographer &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/25-Projects-Photographer.jpg\";s:12:\"tmpl_created\";i:1638818372;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photographer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Black and white\",\"Photography\",\"Project\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:185;a:18:{s:4:\"tmpl\";i:993;s:2:\"id\";i:13422;s:5:\"title\";s:30:\"Classic | Menu | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1587474782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:432;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:186;a:18:{s:4:\"tmpl\";i:925;s:2:\"id\";i:12540;s:5:\"title\";s:33:\"Classic | Menu | Travel and tours\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_Menu_s.png\";s:12:\"tmpl_created\";i:1575960267;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:714;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:187;a:18:{s:4:\"tmpl\";i:1208;s:2:\"id\";i:20361;s:5:\"title\";s:51:\"Exercise &#038; Fitness Equipment &#8211; eCommerce\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Exercise-Fitness-Equipment-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633883766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/exercise-fitness-equipment-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Fitness\",\"Health\",\"Landing Pages\",\"Online Shop\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:188;a:18:{s:4:\"tmpl\";i:1239;s:2:\"id\";i:21373;s:5:\"title\";s:28:\"Photographer &#8211; Gallery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/18-Gallery-Photographer.jpg\";s:12:\"tmpl_created\";i:1638821177;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photographer-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Gallery\",\"Photography\",\"Portfolio\",\"Project\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:189;a:18:{s:4:\"tmpl\";i:1426;s:2:\"id\";i:24348;s:5:\"title\";s:24:\"Wireframe &#8211; Home 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-2.jpg\";s:12:\"tmpl_created\";i:1653988444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:190;a:18:{s:4:\"tmpl\";i:958;s:2:\"id\";i:13129;s:5:\"title\";s:28:\"Classic | Menu | Photography\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/PopUp_s.png\";s:12:\"tmpl_created\";i:1582092645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:521;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:18:{s:4:\"tmpl\";i:1427;s:2:\"id\";i:24366;s:5:\"title\";s:24:\"Wireframe &#8211; Home 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-3.jpg\";s:12:\"tmpl_created\";i:1653988491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:192;a:18:{s:4:\"tmpl\";i:1207;s:2:\"id\";i:20299;s:5:\"title\";s:51:\"Interior Design Consultation &#8211; Online Service\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/10/Interior-Design-Consultation-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/interior-design-consultation-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:65:\"[\"Consulting\",\"Interior Design\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:18:{s:4:\"tmpl\";i:952;s:2:\"id\";i:12726;s:5:\"title\";s:52:\"Classic | Newsletter | Subscribe | Magazine and Blog\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_Newsletter_s.png\";s:12:\"tmpl_created\";i:1579061019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:281;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:18:{s:4:\"tmpl\";i:883;s:2:\"id\";i:11468;s:5:\"title\";s:20:\"Classic | Sale | Gym\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png\";s:12:\"tmpl_created\";i:1567393182;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:740;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:18:{s:4:\"tmpl\";i:1216;s:2:\"id\";i:20623;s:5:\"title\";s:57:\"Luxurious Camping Accommodation For Events &#8211; Events\";s:9:\"thumbnail\";s:113:\"https://library.elementor.com/wp-content/uploads/2021/10/Luxurious-Camping-Accommodation-For-Events-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634041681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/luxurious-camping-accommodation-for-events-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:43:\"[\"Event\",\"Events\",\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:18:{s:4:\"tmpl\";i:1219;s:2:\"id\";i:20886;s:5:\"title\";s:28:\"Online Training &#8211; Home\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/12/2-Home-Online-Training.jpg\";s:12:\"tmpl_created\";i:1638784769;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/online-training-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Online\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:18:{s:4:\"tmpl\";i:1065;s:2:\"id\";i:15570;s:5:\"title\";s:33:\"Classic | Subscribe | Travel Blog\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp.jpg\";s:12:\"tmpl_created\";i:1606215555;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscribe-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:459;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:18:{s:4:\"tmpl\";i:1431;s:2:\"id\";i:24437;s:5:\"title\";s:25:\"Wireframe &#8211; About 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-4.jpg\";s:12:\"tmpl_created\";i:1653988733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:18:{s:4:\"tmpl\";i:1210;s:2:\"id\";i:20414;s:5:\"title\";s:45:\"Online English Courses &#8211; Online Service\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Online-English-Courses-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/online-english-courses-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Course Online\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:18:{s:4:\"tmpl\";i:1132;s:2:\"id\";i:16553;s:5:\"title\";s:31:\"Fly-In | Contact | Beauty Salon\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/12/PopUp.jpg\";s:12:\"tmpl_created\";i:1608622602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:428;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:201;a:18:{s:4:\"tmpl\";i:1441;s:2:\"id\";i:24574;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 5\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-5.jpg\";s:12:\"tmpl_created\";i:1653989135;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:18:{s:4:\"tmpl\";i:1217;s:2:\"id\";i:20333;s:5:\"title\";s:40:\"Plant Pots Online Shop &#8211; eCommerce\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Plant-Pots-Online-Shop-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634042184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/plant-pots-online-shop-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Ecommerce\",\"Landing Pages\",\"Online Shop\",\"Shop\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:18:{s:4:\"tmpl\";i:1211;s:2:\"id\";i:20447;s:5:\"title\";s:33:\"Shared Workspace &#8211; Business\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Shared-Workspace.jpg\";s:12:\"tmpl_created\";i:1633884934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/shared-workspace-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:28:\"[\"Business\",\"Landing Pages\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:204;a:18:{s:4:\"tmpl\";i:1237;s:2:\"id\";i:21313;s:5:\"title\";s:34:\"Spa &#038; Beauty &#8211; Services\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/12/Spa-Beauty-Treatments-page-1.jpg\";s:12:\"tmpl_created\";i:1638819709;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/spa-beauty-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:55:\"[\"Beauty\",\"Hair\",\"Health\",\"Services\",\"Spa\",\"Treatment\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:18:{s:4:\"tmpl\";i:1004;s:2:\"id\";i:13538;s:5:\"title\";s:32:\"Fly-In | Newsletter | Barbershop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/05/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1589893364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:667;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:18:{s:4:\"tmpl\";i:924;s:2:\"id\";i:12550;s:5:\"title\";s:32:\"Fly-in | Sale | Travel and Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_s.png\";s:12:\"tmpl_created\";i:1575960263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:791;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:18:{s:4:\"tmpl\";i:1212;s:2:\"id\";i:20479;s:5:\"title\";s:49:\"Teeth Straightening &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Teeth-Whitening.jpg\";s:12:\"tmpl_created\";i:1633886115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/teeth-straightening-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:46:\"[\"Business\",\"Dental\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:18:{s:4:\"tmpl\";i:1234;s:2:\"id\";i:21234;s:5:\"title\";s:34:\"Insurance Company &#8211; Services\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/15-Services-Insurance-Company.jpg\";s:12:\"tmpl_created\";i:1638818688;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/insurance-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Faq\",\"Form\",\"Insurance\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:209;a:18:{s:4:\"tmpl\";i:1035;s:2:\"id\";i:15062;s:5:\"title\";s:35:\"Fly-In | Sign up | Flooring Company\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp.png\";s:12:\"tmpl_created\";i:1597739629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:309;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:210;a:18:{s:4:\"tmpl\";i:1209;s:2:\"id\";i:20394;s:5:\"title\";s:30:\"Time Management &#8211; Events\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/10/Time-Management-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884077;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/time-management-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:18:{s:4:\"tmpl\";i:1229;s:2:\"id\";i:21118;s:5:\"title\";s:28:\"Contact &#8211; Plants Store\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/12-Contact-Plants-Store.jpg\";s:12:\"tmpl_created\";i:1638802472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/contact-plants-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:40:\"[\"Contact\",\"Info\",\"Plant\",\"Testimonial\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:212;a:18:{s:4:\"tmpl\";i:893;s:2:\"id\";i:11822;s:5:\"title\";s:30:\"Full Screen | Menu | Portfolio\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/PopUp_small.png\";s:12:\"tmpl_created\";i:1569429896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:626;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:213;a:18:{s:4:\"tmpl\";i:1203;s:2:\"id\";i:18591;s:5:\"title\";s:28:\"Coffee Sale &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280-7.png\";s:12:\"tmpl_created\";i:1633877319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/coffee-sale-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:33:\"[\"Coffee\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:18:{s:4:\"tmpl\";i:1231;s:2:\"id\";i:21184;s:5:\"title\";s:28:\"Dental Care &#8211; Services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/14-Services-Dental-Care.jpg\";s:12:\"tmpl_created\";i:1638807148;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dental-care-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Dental\",\"Medical\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:18:{s:4:\"tmpl\";i:1064;s:2:\"id\";i:15580;s:5:\"title\";s:31:\"Fullscreen | Menu | Travel Blog\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1606215358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:348;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:216;a:18:{s:4:\"tmpl\";i:1133;s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones &#8211; eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:39:\"[\"Ecommerce\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:633;s:11:\"trend_index\";i:87;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:217;a:18:{s:4:\"tmpl\";i:1442;s:2:\"id\";i:24584;s:5:\"title\";s:27:\"Wireframe &#8211; Pricing 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Pricing-1.jpg\";s:12:\"tmpl_created\";i:1653989152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:146:\"[\"Booking\",\"Business\",\"Clients\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Online Service\",\"Pricing\",\"Products\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:18:{s:4:\"tmpl\";i:1138;s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference &#8211; Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/conference-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:60:\"[\"Conference\",\"Convention\",\"Event\",\"Events\",\"Landing Pages\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:705;s:11:\"trend_index\";i:216;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:219;a:18:{s:4:\"tmpl\";i:1438;s:2:\"id\";i:24539;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-2.jpg\";s:12:\"tmpl_created\";i:1653989019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"Business\",\"Contact\",\"Footer\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:220;a:18:{s:4:\"tmpl\";i:981;s:2:\"id\";i:13281;s:5:\"title\";s:37:\"Hello Bar | Contact | Interior Design\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp.png\";s:12:\"tmpl_created\";i:1586148801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:19:\"[\"Interior Design\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:679;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:221;a:18:{s:4:\"tmpl\";i:1052;s:2:\"id\";i:15259;s:5:\"title\";s:31:\"Hello Bar | Menu | Psychologist\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Menu-PopUp.png\";s:12:\"tmpl_created\";i:1600170209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:583;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:18:{s:4:\"tmpl\";i:1434;s:2:\"id\";i:24494;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1.jpg\";s:12:\"tmpl_created\";i:1653988874;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Business\",\"Faq\",\"Footer\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:223;a:18:{s:4:\"tmpl\";i:1194;s:2:\"id\";i:18701;s:5:\"title\";s:32:\"Digital Course &#8211; eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg\";s:12:\"tmpl_created\";i:1618995134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Ecommerce\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:18:{s:4:\"tmpl\";i:1192;s:2:\"id\";i:18612;s:5:\"title\";s:34:\"Bag Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bag-Product.jpeg\";s:12:\"tmpl_created\";i:1618395406;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:61:\"[\"Bag\",\"Ecommerce\",\"Landing Pages\",\"Product\",\"Sale\",\"Travel\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:875;s:11:\"trend_index\";i:605;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:225;a:18:{s:4:\"tmpl\";i:1227;s:2:\"id\";i:21083;s:5:\"title\";s:26:\"Conference &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/10-Contact-Conference.jpg\";s:12:\"tmpl_created\";i:1638799208;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/conference-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:44:\"[\"Conference\",\"Contact\",\"Form\",\"Info\",\"Map\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:226;a:18:{s:4:\"tmpl\";i:1193;s:2:\"id\";i:18644;s:5:\"title\";s:37:\"Camera Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/camera_sale_featured-img.jpg\";s:12:\"tmpl_created\";i:1618396388;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Camera\",\"Ecommerce\",\"Landing Pages\",\"Photography\",\"Sale\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:873;s:11:\"trend_index\";i:535;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:18:{s:4:\"tmpl\";i:951;s:2:\"id\";i:12736;s:5:\"title\";s:41:\"Slide In | Contact Us | Magazine and Blog\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_contact_s.png\";s:12:\"tmpl_created\";i:1579060978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:686;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:228;a:18:{s:4:\"tmpl\";i:1222;s:2:\"id\";i:20960;s:5:\"title\";s:26:\"Travel Agency &#8211; Home\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/5-Home-Travel-Agency.jpg\";s:12:\"tmpl_created\";i:1638788432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/travel-agency-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Adventures\",\"Experience\",\"Explore\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:18:{s:4:\"tmpl\";i:1196;s:2:\"id\";i:18815;s:5:\"title\";s:25:\"Car Wash &#8211; Business\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Car-Wash.png\";s:12:\"tmpl_created\";i:1621336431;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/car-wash-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:45:\"[\"Business\",\"car\",\"Discount\",\"Landing Pages\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:230;a:18:{s:4:\"tmpl\";i:1242;s:2:\"id\";i:21473;s:5:\"title\";s:40:\"Architecture Photography &#8211; Gallery\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/20-Gallery-Architecture-Photography.jpg\";s:12:\"tmpl_created\";i:1638822115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/architecture-photography-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:52:\"[\"Architecture\",\"Gallery\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:231;a:18:{s:4:\"tmpl\";i:1015;s:2:\"id\";i:14067;s:5:\"title\";s:37:\"Slide In | Japanese restaurant | Menu\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Menu-Pop-Up-Small.jpg\";s:12:\"tmpl_created\";i:1592290352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:565;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:232;a:18:{s:4:\"tmpl\";i:923;s:2:\"id\";i:12229;s:5:\"title\";s:33:\"Slide In | Law Firm | Information\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/popup.png\";s:12:\"tmpl_created\";i:1572847842;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:413;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:18:{s:4:\"tmpl\";i:1198;s:2:\"id\";i:18824;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1621336756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:18:{s:4:\"tmpl\";i:1236;s:2:\"id\";i:21259;s:5:\"title\";s:28:\"3D Designer &#8211; Projects\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/24-Projects-3D-Designer.jpg\";s:12:\"tmpl_created\";i:1638819185;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/3d-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"3D\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:235;a:18:{s:4:\"tmpl\";i:1028;s:2:\"id\";i:14827;s:5:\"title\";s:39:\"Slide-In | Contact | Luxury Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/PopUp.png\";s:12:\"tmpl_created\";i:1595323523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:284;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:18:{s:4:\"tmpl\";i:1197;s:2:\"id\";i:18819;s:5:\"title\";s:27:\"Dog Walker &#8211; Business\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Dog-Walker.png\";s:12:\"tmpl_created\";i:1621336601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/dog-walker-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:41:\"[\"Business\",\"Dog\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:237;a:18:{s:4:\"tmpl\";i:1238;s:2:\"id\";i:21349;s:5:\"title\";s:29:\"Architecture &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/23-Projects-Architecture.jpg\";s:12:\"tmpl_created\";i:1638820870;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/architecture-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:70:\"[\"Architecture\",\"Creative\",\"Creative Portfolio\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:238;a:18:{s:4:\"tmpl\";i:1034;s:2:\"id\";i:15075;s:5:\"title\";s:34:\"Slide-In | Menu | Flooring Company\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp-1.png\";s:12:\"tmpl_created\";i:1597739605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:162;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:239;a:18:{s:4:\"tmpl\";i:1414;s:2:\"id\";i:24079;s:5:\"title\";s:32:\"Fashion Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Fashion-Shop.jpg\";s:12:\"tmpl_created\";i:1650988089;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/fashion-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Aesthetic\",\"Business\",\"Coming Soon\",\"Ecommerce\",\"Girly\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:18:{s:4:\"tmpl\";i:1195;s:2:\"id\";i:18761;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1621336146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:241;a:18:{s:4:\"tmpl\";i:1153;s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor &#8211; Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:64:\"[\"Education\",\"Landing Pages\",\"Online Service\",\"Teacher\",\"Tutor\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:780;s:11:\"trend_index\";i:628;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:242;a:18:{s:4:\"tmpl\";i:1430;s:2:\"id\";i:24434;s:5:\"title\";s:25:\"Wireframe &#8211; About 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-3.jpg\";s:12:\"tmpl_created\";i:1653988697;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:243;a:18:{s:4:\"tmpl\";i:1158;s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach &#8211; Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:38:\"[\"Coach\",\"Landing Pages\",\"Life Coach\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:787;s:11:\"trend_index\";i:751;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:244;a:18:{s:4:\"tmpl\";i:1436;s:2:\"id\";i:24515;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3.jpg\";s:12:\"tmpl_created\";i:1653988946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:66:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:245;a:18:{s:4:\"tmpl\";i:875;s:2:\"id\";i:11241;s:5:\"title\";s:36:\"Classic | Digital Agency | Marketing\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg\";s:12:\"tmpl_created\";i:1564643043;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:315;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:246;a:18:{s:4:\"tmpl\";i:1146;s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:80:\"[\"Advisor\",\"Business\",\"Consulting\",\"Finance\",\"Investment\",\"Landing Pages\",\"Tax\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:790;s:11:\"trend_index\";i:630;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:18:{s:4:\"tmpl\";i:1429;s:2:\"id\";i:24421;s:5:\"title\";s:25:\"Wireframe &#8211; About 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-2.jpg\";s:12:\"tmpl_created\";i:1653988579;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:248;a:18:{s:4:\"tmpl\";i:674;s:2:\"id\";i:8505;s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";i:1526415501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:222;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:249;a:18:{s:4:\"tmpl\";i:1136;s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:44:\"[\"Dental\",\"Doctor\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:801;s:11:\"trend_index\";i:655;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:18:{s:4:\"tmpl\";i:1417;s:2:\"id\";i:24116;s:5:\"title\";s:32:\"Tech Company &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Tech-Company.jpg\";s:12:\"tmpl_created\";i:1650989265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/tech-company-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"Business\",\"Coding\",\"Coming Soon\",\"Computer\",\"Developer\",\"IT\",\"Services\",\"Technology\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:18:{s:4:\"tmpl\";i:675;s:2:\"id\";i:8511;s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";i:1526415528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:155;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:252;a:18:{s:4:\"tmpl\";i:1161;s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:800;s:11:\"trend_index\";i:556;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:18:{s:4:\"tmpl\";i:1220;s:2:\"id\";i:20908;s:5:\"title\";s:42:\"Packing &#038; Moving Company &#8211; Home\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/3-Home-Packing-Moving-Company.jpg\";s:12:\"tmpl_created\";i:1638786127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/packing-moving-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Movers\",\"Moving\",\"Storge\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:254;a:18:{s:4:\"tmpl\";i:1152;s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer &#8211; Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:67:\"[\"Computer\",\"Donate\",\"Donation\",\"Kids\",\"Landing Pages\",\"Nonprofit\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:718;s:11:\"trend_index\";i:278;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:255;a:18:{s:4:\"tmpl\";i:672;s:2:\"id\";i:8512;s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";i:1526415449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:375;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:256;a:18:{s:4:\"tmpl\";i:1245;s:2:\"id\";i:21546;s:5:\"title\";s:28:\"Interior Design &#8211; Home\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/1-Home-Interior-Design-1.jpg\";s:12:\"tmpl_created\";i:1639046269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/interior-design-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Design\",\"Form\",\"Furniture Design\",\"Interior Design\",\"Testimonial\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:18:{s:4:\"tmpl\";i:1135;s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management &#8211; Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:39:\"[\"HR\",\"Landing Pages\",\"Product\",\"SaaS\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:708;s:11:\"trend_index\";i:292;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:258;a:18:{s:4:\"tmpl\";i:671;s:2:\"id\";i:8513;s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";i:1526415417;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:176;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:18:{s:4:\"tmpl\";i:1249;s:2:\"id\";i:22137;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647177194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:260;a:18:{s:4:\"tmpl\";i:1134;s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center &#8211; Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:44:\"[\"Landing Pages\",\"Medical\",\"Online Service\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:750;s:11:\"trend_index\";i:332;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:261;a:18:{s:4:\"tmpl\";i:1226;s:2:\"id\";i:21069;s:5:\"title\";s:21:\"Hotel &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/12/9-Contact-Hotel.jpg\";s:12:\"tmpl_created\";i:1638798545;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/hotel-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:36:\"[\"Contact\",\"from\",\"Info\",\"Vacation\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:262;a:18:{s:4:\"tmpl\";i:1150;s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:99:\"[\"Advisor\",\"Business\",\"Coach\",\"Counseling\",\"Landing Pages\",\"Online Service\",\"Parental\",\"Parenting\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:817;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:263;a:18:{s:4:\"tmpl\";i:1432;s:2:\"id\";i:24461;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-1.jpg\";s:12:\"tmpl_created\";i:1653988784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:264;a:18:{s:4:\"tmpl\";i:676;s:2:\"id\";i:8514;s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";i:1526415558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:220;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:18:{s:4:\"tmpl\";i:1137;s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course &#8211; Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/online-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:55:\"[\"Academy\",\"Course Online\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:777;s:11:\"trend_index\";i:776;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:266;a:18:{s:4:\"tmpl\";i:668;s:2:\"id\";i:8523;s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";i:1526415291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:268;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:18:{s:4:\"tmpl\";i:1440;s:2:\"id\";i:24563;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 4\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-4.jpg\";s:12:\"tmpl_created\";i:1653989095;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:84:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:268;a:18:{s:4:\"tmpl\";i:1162;s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Health\",\"landscape design\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:814;s:11:\"trend_index\";i:800;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:269;a:18:{s:4:\"tmpl\";i:1439;s:2:\"id\";i:24553;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 3\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-3.jpg\";s:12:\"tmpl_created\";i:1653989057;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Professional\",\"Testimonial\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:18:{s:4:\"tmpl\";i:1144;s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef &#8211; Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:53:\"[\"Business\",\"Chef\",\"Food\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:795;s:11:\"trend_index\";i:617;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:271;a:18:{s:4:\"tmpl\";i:1435;s:2:\"id\";i:24504;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2.jpg\";s:12:\"tmpl_created\";i:1653988910;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:80:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:272;a:18:{s:4:\"tmpl\";i:669;s:2:\"id\";i:8524;s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";i:1526415337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:171;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:273;a:18:{s:4:\"tmpl\";i:1147;s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course &#8211; Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:76:\"[\"Academy\",\"Coding\",\"Course Online\",\"Developer\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:805;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:274;a:18:{s:4:\"tmpl\";i:1437;s:2:\"id\";i:24528;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-1.jpg\";s:12:\"tmpl_created\";i:1653988981;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:18:{s:4:\"tmpl\";i:1143;s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant &#8211; Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:46:\"[\"Assistant\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:793;s:11:\"trend_index\";i:757;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:18:{s:4:\"tmpl\";i:673;s:2:\"id\";i:8526;s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";i:1526415474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:285;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:277;a:18:{s:4:\"tmpl\";i:1228;s:2:\"id\";i:21104;s:5:\"title\";s:26:\"Restaurant &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/11-Contact-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638800146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/restaurant-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:60:\"[\"Contact\",\"Food\",\"Form\",\"Google Maps\",\"Info\",\"Testimonial\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:278;a:18:{s:4:\"tmpl\";i:1140;s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project &#8211; Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:59:\"[\"Construction\",\"Landing Pages\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:796;s:11:\"trend_index\";i:724;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:18:{s:4:\"tmpl\";i:1244;s:2:\"id\";i:21393;s:5:\"title\";s:34:\"Interior Designer &#8211; Projects\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/12/big-22-Projects-Interior-Designer-New.jpeg\";s:12:\"tmpl_created\";i:1638823945;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/interior-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:93:\"[\"Creative\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Interior Design\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:280;a:18:{s:4:\"tmpl\";i:1148;s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog &amp; Cat Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:71:\"[\"Business\",\"Cat\",\"Delivery\",\"Dog\",\"Food\",\"Landing Pages\",\"Pet\",\"Pets\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:782;s:11:\"trend_index\";i:510;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:281;a:18:{s:4:\"tmpl\";i:670;s:2:\"id\";i:8525;s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";i:1526415374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:575;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:282;a:18:{s:4:\"tmpl\";i:1251;s:2:\"id\";i:22143;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1647177389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:18:{s:4:\"tmpl\";i:1155;s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:38:\"[\"Dog\",\"Groom\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:786;s:11:\"trend_index\";i:731;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:284;a:18:{s:4:\"tmpl\";i:1241;s:2:\"id\";i:21451;s:5:\"title\";s:26:\"Exhibition &#8211; Gallery\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/21-Gallery-Exhibition.jpg\";s:12:\"tmpl_created\";i:1638821855;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/exhibition-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"Art\",\"Creative\",\"Creative Portfolio\",\"Exhibition\",\"Gallery\",\"Portfolio\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:285;a:18:{s:4:\"tmpl\";i:502;s:2:\"id\";i:5438;s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";i:1520443512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:9;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:286;a:18:{s:4:\"tmpl\";i:1159;s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course &#8211; Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:45:\"[\"Course Online\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:770;s:11:\"trend_index\";i:430;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:287;a:18:{s:4:\"tmpl\";i:1240;s:2:\"id\";i:21430;s:5:\"title\";s:30:\"Travel Blogger &#8211; Gallery\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/12/19-Gallery-Travel-Blogger.jpg\";s:12:\"tmpl_created\";i:1638821592;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/travel-blogger-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Gallery\",\"Photography\",\"Slider\",\"Travel\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:288;a:18:{s:4:\"tmpl\";i:1149;s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor &#8211; Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:70:\"[\"Free Trial\",\"Instructor\",\"Landing Pages\",\"Online Service\",\"Pilates\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:778;s:11:\"trend_index\";i:412;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:289;a:18:{s:4:\"tmpl\";i:1416;s:2:\"id\";i:24104;s:5:\"title\";s:33:\"Ceramics Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Ceramics-Shop.jpg\";s:12:\"tmpl_created\";i:1650988949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/ceramics-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:290;a:18:{s:4:\"tmpl\";i:557;s:2:\"id\";i:6135;s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";i:1520443663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:47;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:291;a:18:{s:4:\"tmpl\";i:1412;s:2:\"id\";i:24033;s:5:\"title\";s:37:\"Dance Studio &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Dance-Studio.jpg\";s:12:\"tmpl_created\";i:1649881344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/dance-studio-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:113:\"[\"Academy\",\"Business\",\"Dance Studio\",\"Form\",\"Pilates\",\"School\",\"Sport\",\"Teacher\",\"Training\",\"Under Construction\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:18:{s:4:\"tmpl\";i:1190;s:2:\"id\";i:18568;s:5:\"title\";s:32:\"Flower Delivery &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/04/Flower-Delivery.png\";s:12:\"tmpl_created\";i:1617546716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/flower-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Delivery\",\"Flower\",\"Landing Pages\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:874;s:11:\"trend_index\";i:763;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:293;a:18:{s:4:\"tmpl\";i:1145;s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar &#8211; Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:36:\"[\"Events\",\"Landing Pages\",\"Webinar\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:821;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:18:{s:4:\"tmpl\";i:1413;s:2:\"id\";i:24049;s:5:\"title\";s:33:\"ECO Shop &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-ECO-Shop.jpg\";s:12:\"tmpl_created\";i:1649882053;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/eco-shop-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:110:\"[\"Aesthetic\",\"Business\",\"Creative\",\"Decor\",\"Health\",\"Help\",\"Lifestyle\",\"Products\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:295;a:18:{s:4:\"tmpl\";i:497;s:2:\"id\";i:5397;s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";i:1520443503;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:43;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:296;a:18:{s:4:\"tmpl\";i:1154;s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer &#8211; Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:68:\"[\"Care\",\"Covid-19\",\"Help\",\"Involvement\",\"Landing Pages\",\"Volunteer\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:854;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:18:{s:4:\"tmpl\";i:1419;s:2:\"id\";i:24136;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Food-Blog.jpg\";s:12:\"tmpl_created\";i:1650990034;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:62:\"[\"Blog\",\"Business\",\"Coming Soon\",\"Cooking\",\"Education\",\"Food\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:18:{s:4:\"tmpl\";i:1142;s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:74:\"[\"Agency\",\"Business\",\"Landing Pages\",\"Marketing\",\"Marketing Landing Page\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:816;s:11:\"trend_index\";i:787;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:18:{s:4:\"tmpl\";i:1411;s:2:\"id\";i:24020;s:5:\"title\";s:35:\"Mobile App &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Mobile-App.jpg\";s:12:\"tmpl_created\";i:1649880955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/mobile-app-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"App\",\"Business\",\"Coding\",\"Computer\",\"Launch\",\"Mobile\",\"Under Construction\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:18:{s:4:\"tmpl\";i:498;s:2:\"id\";i:5405;s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";i:1520443505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:50;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:301;a:18:{s:4:\"tmpl\";i:1139;s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:42:\"[\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:820;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:18:{s:4:\"tmpl\";i:1420;s:2:\"id\";i:24152;s:5:\"title\";s:32:\"Perfume Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Perfume-Shop.jpg\";s:12:\"tmpl_created\";i:1650990353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/perfume-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Business\",\"Coming Soon\",\"Cosmetics\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:18:{s:4:\"tmpl\";i:1185;s:2:\"id\";i:18492;s:5:\"title\";s:34:\"Bicycle Pre-Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bike-Landing-Page.png\";s:12:\"tmpl_created\";i:1617535552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Bicycle\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:871;s:11:\"trend_index\";i:826;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:18:{s:4:\"tmpl\";i:1418;s:2:\"id\";i:24126;s:5:\"title\";s:28:\"Skincare &#8211; Coming Soon\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Skincare.jpg\";s:12:\"tmpl_created\";i:1650989585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/skincare-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:128:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Coming Soon\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Services\",\"Skincare\",\"Treatment\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:18:{s:4:\"tmpl\";i:1181;s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:64:\"[\"Fashion\",\"Glasses\",\"Landing Pages\",\"Online Service\",\"Virtual\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:848;s:11:\"trend_index\";i:803;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:18:{s:4:\"tmpl\";i:500;s:2:\"id\";i:5421;s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";i:1520443509;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:77;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:307;a:18:{s:4:\"tmpl\";i:513;s:2:\"id\";i:5533;s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";i:1520443534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:57;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:308;a:18:{s:4:\"tmpl\";i:1410;s:2:\"id\";i:24004;s:5:\"title\";s:33:\"Skincare &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Skincare.jpg\";s:12:\"tmpl_created\";i:1649880534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/skincare-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:144:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Makeup\",\"Services\",\"Skincare\",\"Treatment\",\"Under Construction\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:18:{s:4:\"tmpl\";i:1172;s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/moving-company-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"Landing Pages\",\"Movers\",\"Moving\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:826;s:11:\"trend_index\";i:767;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:18:{s:4:\"tmpl\";i:1415;s:2:\"id\";i:24092;s:5:\"title\";s:29:\"Vase Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Vase-Shop.jpg\";s:12:\"tmpl_created\";i:1650988613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/vase-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:18:{s:4:\"tmpl\";i:1186;s:2:\"id\";i:18517;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Food-Blog.png\";s:12:\"tmpl_created\";i:1617539897;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:45:\"[\"Blog\",\"Coming Soon\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:844;s:11:\"trend_index\";i:672;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:18:{s:4:\"tmpl\";i:1167;s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service &#8211; Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:41:\"[\"IT\",\"Landing Pages\",\"Remote\",\"Support\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:806;s:11:\"trend_index\";i:634;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:18:{s:4:\"tmpl\";i:1248;s:2:\"id\";i:22134;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647176713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:18:{s:4:\"tmpl\";i:512;s:2:\"id\";i:5525;s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";i:1520443532;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:29;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:315;a:18:{s:4:\"tmpl\";i:1189;s:2:\"id\";i:18560;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1617542761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:843;s:11:\"trend_index\";i:561;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:18:{s:4:\"tmpl\";i:1225;s:2:\"id\";i:21041;s:5:\"title\";s:41:\"Business Consulting Company &#8211; About\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/8-About-Business-Consulting-Company.jpg\";s:12:\"tmpl_created\";i:1638797560;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/business-consulting-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Coach\",\"Collaboration\",\"Consulting\",\"Life Coach\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:18:{s:4:\"tmpl\";i:1187;s:2:\"id\";i:18528;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1617541784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:872;s:11:\"trend_index\";i:819;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:318;a:18:{s:4:\"tmpl\";i:1243;s:2:\"id\";i:21135;s:5:\"title\";s:28:\"Construction &#8211; Service\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/13-Service-Construction.jpg\";s:12:\"tmpl_created\";i:1638823202;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Architecture\",\"Construction\",\"Faq\",\"Services\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:18:{s:4:\"tmpl\";i:501;s:2:\"id\";i:5429;s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";i:1520443510;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:8;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:320;a:18:{s:4:\"tmpl\";i:1174;s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:59:\"[\"Business\",\"Hair\",\"hairdresser\",\"Landing Pages\",\"Stylist\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:840;s:11:\"trend_index\";i:806;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:321;a:18:{s:4:\"tmpl\";i:1223;s:2:\"id\";i:20981;s:5:\"title\";s:37:\"Creative Digital Agency &#8211; About\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2021/12/6-About-Creative-Digital-Agency.jpg\";s:12:\"tmpl_created\";i:1638789303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/creative-digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"About\",\"Advisor\",\"Creative\",\"Creative Portfolio\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:18:{s:4:\"tmpl\";i:1184;s:2:\"id\";i:18449;s:5:\"title\";s:45:\"Aesthetic Clinic &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png\";s:12:\"tmpl_created\";i:1616682181;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:57:\"[\"Aesthetic\",\"Beauty\",\"Fitness\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:859;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:18:{s:4:\"tmpl\";i:1221;s:2:\"id\";i:20926;s:5:\"title\";s:33:\"Doctors Online Consultation -Home\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/12/4-Home-Doctors-Online-Consultation.jpg\";s:12:\"tmpl_created\";i:1638787371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/doctors-online-consultation-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"App\",\"Health\",\"Medical\",\"Online\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:324;a:18:{s:4:\"tmpl\";i:505;s:2:\"id\";i:5464;s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";i:1520443518;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:142;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:325;a:18:{s:4:\"tmpl\";i:1165;s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Cooking\",\"Course Online\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:845;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:18:{s:4:\"tmpl\";i:1188;s:2:\"id\";i:18550;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1617542506;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:832;s:11:\"trend_index\";i:600;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:327;a:18:{s:4:\"tmpl\";i:1250;s:2:\"id\";i:22140;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1647177317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:18:{s:4:\"tmpl\";i:510;s:2:\"id\";i:5504;s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";i:1520443528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:46;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:329;a:18:{s:4:\"tmpl\";i:1191;s:2:\"id\";i:18539;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1617610273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:876;s:11:\"trend_index\";i:652;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:18:{s:4:\"tmpl\";i:1175;s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/open-week-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:59:\"[\"Education\",\"Event\",\"Events\",\"Landing Pages\",\"University\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:831;s:11:\"trend_index\";i:673;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:18:{s:4:\"tmpl\";i:1177;s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Beauty\",\"Business\",\"Course Online\",\"Landing Pages\",\"Makeup\",\"Online Service\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:861;s:11:\"trend_index\";i:783;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:18:{s:4:\"tmpl\";i:511;s:2:\"id\";i:5515;s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";i:1520443530;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:161;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:333;a:18:{s:4:\"tmpl\";i:1179;s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:76:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Online Event\",\"Real estate\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:866;s:11:\"trend_index\";i:779;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:18:{s:4:\"tmpl\";i:506;s:2:\"id\";i:5472;s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";i:1520443520;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:116;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:335;a:18:{s:4:\"tmpl\";i:1183;s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children&#8217;s Optometrist &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:85:\"[\"Business\",\"Children\",\"Eye\",\"Glasses\",\"Health\",\"Kids\",\"Landing Pages\",\"Optometrist\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:877;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:18:{s:4:\"tmpl\";i:1182;s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"car\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:869;s:11:\"trend_index\";i:797;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:18:{s:4:\"tmpl\";i:1201;s:2:\"id\";i:19144;s:5:\"title\";s:25:\"Birthday Party Invitation\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/06/250x280.png\";s:12:\"tmpl_created\";i:1623848691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/birthday-party-invitation/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Birthday\",\"Event\",\"Landing Pages\",\"Party\",\"RSVD\",\"Save the Date\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:18:{s:4:\"tmpl\";i:1124;s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/beauty-salon-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:184;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:18:{s:4:\"tmpl\";i:1176;s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Delivery\",\"Delivery Service\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:819;s:11:\"trend_index\";i:685;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:340;a:18:{s:4:\"tmpl\";i:504;s:2:\"id\";i:5455;s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";i:1520443516;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:70;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:341;a:18:{s:4:\"tmpl\";i:1125;s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon &#8211; Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:101;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:18:{s:4:\"tmpl\";i:1180;s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant &#8211; Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:51:\"[\"Coming Soon\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:810;s:11:\"trend_index\";i:809;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:18:{s:4:\"tmpl\";i:499;s:2:\"id\";i:5413;s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";i:1520443507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:52;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:344;a:18:{s:4:\"tmpl\";i:1126;s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon &#8211; Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:90;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:18:{s:4:\"tmpl\";i:1173;s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:60:\"[\"Business\",\"Health\",\"Landing Pages\",\"Services\",\"Therapist\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:856;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:346;a:18:{s:4:\"tmpl\";i:1127;s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon &#8211; Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/beauty-salon-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:56;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:18:{s:4:\"tmpl\";i:1178;s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:61:\"[\"Business\",\"Family\",\"Financial\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:870;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:18:{s:4:\"tmpl\";i:1128;s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon &#8211; Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/beauty-salon-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:261;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:18:{s:4:\"tmpl\";i:1168;s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:59:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:799;s:11:\"trend_index\";i:540;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:350;a:18:{s:4:\"tmpl\";i:503;s:2:\"id\";i:5447;s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";i:1520443514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:12;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:351;a:18:{s:4:\"tmpl\";i:1073;s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/travel-blog-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:343;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:352;a:18:{s:4:\"tmpl\";i:1166;s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency &#8211; Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:73:\"[\"Landing Pages\",\"listing\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:858;s:11:\"trend_index\";i:777;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:18:{s:4:\"tmpl\";i:1074;s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-blog-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:564;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:354;a:18:{s:4:\"tmpl\";i:1170;s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page &#8211; Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:62:\"[\"Care\",\"Involvement\",\"Landing Pages\",\"Thank You\",\"Volunteer\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:857;s:11:\"trend_index\";i:818;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:355;a:18:{s:4:\"tmpl\";i:507;s:2:\"id\";i:5480;s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";i:1520443522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-4-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:303;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:356;a:18:{s:4:\"tmpl\";i:1075;s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-blog-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:224;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:18:{s:4:\"tmpl\";i:1169;s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:56:\"[\"Event\",\"Events\",\"Landing Pages\",\"Thank You\",\"Webinar\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:868;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:18:{s:4:\"tmpl\";i:1056;s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/dance-studio-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:301;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:18:{s:4:\"tmpl\";i:545;s:2:\"id\";i:6027;s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";i:1520443639;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-5-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:40;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:360;a:18:{s:4:\"tmpl\";i:1160;s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product &#8211; eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:38:\"[\"Beauty\",\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:797;s:11:\"trend_index\";i:703;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:361;a:18:{s:4:\"tmpl\";i:1057;s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/dance-studio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:373;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:18:{s:4:\"tmpl\";i:546;s:2:\"id\";i:6036;s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";i:1520443641;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-6-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:123;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:363;a:18:{s:4:\"tmpl\";i:1171;s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym &#8211; App Service &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:58:\"[\"App\",\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:767;s:11:\"trend_index\";i:577;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:364;a:18:{s:4:\"tmpl\";i:1058;s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio &#8211; Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:458;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:18:{s:4:\"tmpl\";i:1156;s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\",\"Sunglasses\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:812;s:11:\"trend_index\";i:732;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:366;a:18:{s:4:\"tmpl\";i:1055;s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio &#8211; Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/dance-studio-schedule/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:602;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:18:{s:4:\"tmpl\";i:1157;s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion &#8211; eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:808;s:11:\"trend_index\";i:745;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:368;a:18:{s:4:\"tmpl\";i:1059;s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:661;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:369;a:18:{s:4:\"tmpl\";i:1151;s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Discount\",\"Ecommerce\",\"Landing Pages\",\"Sale\",\"Shoes\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:803;s:11:\"trend_index\";i:642;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:370;a:18:{s:4:\"tmpl\";i:508;s:2:\"id\";i:5488;s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";i:1520443524;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:169;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:371;a:18:{s:4:\"tmpl\";i:1060;s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:721;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:372;a:18:{s:4:\"tmpl\";i:556;s:2:\"id\";i:6122;s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";i:1520443661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:26;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:373;a:18:{s:4:\"tmpl\";i:1163;s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef &#8211; Thank You Page &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:43:\"[\"Chef\",\"Food\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:823;s:11:\"trend_index\";i:754;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:374;a:18:{s:4:\"tmpl\";i:1042;s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/psychologist-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:426;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:375;a:18:{s:4:\"tmpl\";i:1164;s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course  &#8211; Thank You Page &#8211; Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Education\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:834;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:18:{s:4:\"tmpl\";i:1045;s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:558;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:18:{s:4:\"tmpl\";i:509;s:2:\"id\";i:5496;s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";i:1520443526;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:453;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:378;a:18:{s:4:\"tmpl\";i:1041;s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/psychologist-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:297;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:18:{s:4:\"tmpl\";i:1044;s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:537;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:380;a:18:{s:4:\"tmpl\";i:684;s:2:\"id\";i:8961;s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";i:1528639909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:15;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:18:{s:4:\"tmpl\";i:1043;s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/psychologist-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:379;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:382;a:18:{s:4:\"tmpl\";i:1036;s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/flooring-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:319;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:18:{s:4:\"tmpl\";i:685;s:2:\"id\";i:8969;s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";i:1528700014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:124;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:18:{s:4:\"tmpl\";i:1037;s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:380;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:385;a:18:{s:4:\"tmpl\";i:1038;s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:291;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:18:{s:4:\"tmpl\";i:686;s:2:\"id\";i:8973;s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";i:1528700205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:54;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:18:{s:4:\"tmpl\";i:1282;s:2:\"id\";i:22417;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1647354987;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:388;a:18:{s:4:\"tmpl\";i:1040;s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/flooring-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:392;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:18:{s:4:\"tmpl\";i:1039;s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/flooring-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:185;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:18:{s:4:\"tmpl\";i:687;s:2:\"id\";i:8977;s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";i:1528700326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:396;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:18:{s:4:\"tmpl\";i:1252;s:2:\"id\";i:22146;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1647177514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:18:{s:4:\"tmpl\";i:688;s:2:\"id\";i:8981;s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";i:1528700484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:195;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:18:{s:4:\"tmpl\";i:1021;s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:447;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:18:{s:4:\"tmpl\";i:689;s:2:\"id\";i:8985;s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";i:1528700612;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:95;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:18:{s:4:\"tmpl\";i:1020;s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:569;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:18:{s:4:\"tmpl\";i:1019;s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:165;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:397;a:18:{s:4:\"tmpl\";i:690;s:2:\"id\";i:8989;s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";i:1528701063;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:111;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:18:{s:4:\"tmpl\";i:1018;s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:167;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:399;a:18:{s:4:\"tmpl\";i:1283;s:2:\"id\";i:22423;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1647355154;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:400;a:18:{s:4:\"tmpl\";i:691;s:2:\"id\";i:8996;s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";i:1528701290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:153;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:18:{s:4:\"tmpl\";i:1010;s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:287;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:18:{s:4:\"tmpl\";i:1284;s:2:\"id\";i:22428;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1647355339;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:18:{s:4:\"tmpl\";i:692;s:2:\"id\";i:9001;s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";i:1528701433;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:208;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:18:{s:4:\"tmpl\";i:1007;s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant &#8211; Chef&#8217;s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:18:{s:4:\"tmpl\";i:1006;s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant &#8211; Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:829;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:406;a:18:{s:4:\"tmpl\";i:1005;s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:389;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:18:{s:4:\"tmpl\";i:997;s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop &#8211; 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";i:1589893152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:681;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:18:{s:4:\"tmpl\";i:1009;s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:551;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:409;a:18:{s:4:\"tmpl\";i:1008;s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:711;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:18:{s:4:\"tmpl\";i:998;s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop &#8211; Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";i:1589893157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:523;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:411;a:18:{s:4:\"tmpl\";i:1016;s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant &#8211; Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:727;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:412;a:18:{s:4:\"tmpl\";i:999;s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";i:1589893275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/barbershop-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:832;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:413;a:18:{s:4:\"tmpl\";i:996;s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1589893147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Footer\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:267;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:18:{s:4:\"tmpl\";i:1000;s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";i:1589893289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/barbershop-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:739;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:415;a:18:{s:4:\"tmpl\";i:995;s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop &#8211; Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1589893142;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Header\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:137;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:416;a:18:{s:4:\"tmpl\";i:1001;s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop &#8211; Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";i:1589893298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/barbershop-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:417;a:18:{s:4:\"tmpl\";i:1002;s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1589893307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:822;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:418;a:18:{s:4:\"tmpl\";i:1003;s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";i:1589893315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:18:{s:4:\"tmpl\";i:982;s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";i:1587474541;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/online-course-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:125;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:420;a:18:{s:4:\"tmpl\";i:994;s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop &#8211; Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";i:1589893137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:580;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:421;a:18:{s:4:\"tmpl\";i:1131;s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:29:\"[\"404\",\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:563;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:18:{s:4:\"tmpl\";i:983;s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";i:1587474558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/online-course-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:429;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:423;a:18:{s:4:\"tmpl\";i:984;s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course &#8211; Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";i:1587474574;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/online-course-course-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:310;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:424;a:18:{s:4:\"tmpl\";i:985;s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1587474591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/online-course-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:533;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:18:{s:4:\"tmpl\";i:1130;s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Footer\",\"Hair\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:126;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:18:{s:4:\"tmpl\";i:971;s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";i:1586148661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/interior-design-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:264;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:427;a:18:{s:4:\"tmpl\";i:1453;s:2:\"id\";i:16346;s:5:\"title\";s:33:\"Your New Home &#8211; Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";i:1660205402;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/your-new-home-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:428;a:18:{s:4:\"tmpl\";i:972;s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";i:1586148666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/interior-design-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:334;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:18:{s:4:\"tmpl\";i:1129;s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Hair\",\"Header\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:49;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:430;a:18:{s:4:\"tmpl\";i:973;s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design &#8211; Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";i:1586148672;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/interior-design-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:323;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:18:{s:4:\"tmpl\";i:641;s:2:\"id\";i:7686;s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";i:1521558047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"Archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:152;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:432;a:18:{s:4:\"tmpl\";i:974;s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";i:1586148677;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/interior-design-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:337;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:18:{s:4:\"tmpl\";i:959;s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";i:1582093442;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photography-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:201;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:434;a:18:{s:4:\"tmpl\";i:960;s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";i:1582093446;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/photography-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:374;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:18:{s:4:\"tmpl\";i:484;s:2:\"id\";i:5283;s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";i:1520443478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:202;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:436;a:18:{s:4:\"tmpl\";i:961;s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography &#8211; Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";i:1582093450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:350;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:18:{s:4:\"tmpl\";i:962;s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography &#8211; Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";i:1582093454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photography-wildlife/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:656;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:438;a:18:{s:4:\"tmpl\";i:487;s:2:\"id\";i:5306;s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";i:1520443484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:581;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:18:{s:4:\"tmpl\";i:963;s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography &#8211; Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";i:1582093457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:532;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:440;a:18:{s:4:\"tmpl\";i:964;s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography &#8211; Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";i:1582093461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:766;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:18:{s:4:\"tmpl\";i:965;s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography &#8211; Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";i:1582093465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/photography-nature/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:778;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:442;a:18:{s:4:\"tmpl\";i:491;s:2:\"id\";i:5341;s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";i:1520443491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:633;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:443;a:18:{s:4:\"tmpl\";i:966;s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography &#8211; Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";i:1582093469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:750;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:444;a:18:{s:4:\"tmpl\";i:488;s:2:\"id\";i:5315;s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";i:1520443486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:263;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:18:{s:4:\"tmpl\";i:967;s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography &#8211; Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";i:1582093473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:446;a:18:{s:4:\"tmpl\";i:968;s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography &#8211; Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";i:1582093477;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/photography-pets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:508;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:18:{s:4:\"tmpl\";i:969;s:2:\"id\";i:12805;s:5:\"title\";s:37:\"Photography &#8211; B&amp;W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i:1582093481;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/photography-bw-portraits/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:448;a:18:{s:4:\"tmpl\";i:490;s:2:\"id\";i:5333;s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";i:1520443489;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:128;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:449;a:18:{s:4:\"tmpl\";i:970;s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography &#8211; Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";i:1582093484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:643;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:450;a:18:{s:4:\"tmpl\";i:496;s:2:\"id\";i:5389;s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";i:1520443501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:307;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:451;a:18:{s:4:\"tmpl\";i:940;s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";i:1579060604;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/magazine-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:121;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:18:{s:4:\"tmpl\";i:936;s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";i:1575960464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:194;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:453;a:18:{s:4:\"tmpl\";i:486;s:2:\"id\";i:5298;s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";i:1520443482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:520;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:18:{s:4:\"tmpl\";i:932;s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";i:1575960441;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:445;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:455;a:18:{s:4:\"tmpl\";i:938;s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel &#8211; Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";i:1575960474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:726;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:456;a:18:{s:4:\"tmpl\";i:495;s:2:\"id\";i:5381;s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";i:1520443499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:168;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:457;a:18:{s:4:\"tmpl\";i:937;s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel &#8211; Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";i:1575960469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-testimonials/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:481;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:18:{s:4:\"tmpl\";i:935;s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";i:1575960459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/travel-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:501;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:459;a:18:{s:4:\"tmpl\";i:934;s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel &#8211; FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";i:1575960453;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-faq/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:387;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:460;a:18:{s:4:\"tmpl\";i:493;s:2:\"id\";i:5357;s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";i:1520443495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:232;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:461;a:18:{s:4:\"tmpl\";i:933;s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel &#8211; Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";i:1575960445;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-contact-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:536;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:462;a:18:{s:4:\"tmpl\";i:892;s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio &#8211; Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";i:1569428959;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/portfolio-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:241;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:463;a:18:{s:4:\"tmpl\";i:485;s:2:\"id\";i:5290;s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";i:1520443480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:502;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:464;a:18:{s:4:\"tmpl\";i:891;s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";i:1569428955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/portfolio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:290;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:465;a:18:{s:4:\"tmpl\";i:482;s:2:\"id\";i:5266;s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";i:1520443474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:134;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:466;a:18:{s:4:\"tmpl\";i:890;s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio &#8211; Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";i:1569428951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/portfolio-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:467;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:467;a:18:{s:4:\"tmpl\";i:889;s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";i:1569428946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:449;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:18:{s:4:\"tmpl\";i:866;s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";i:1564641877;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/digital-agency-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:32;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:469;a:18:{s:4:\"tmpl\";i:483;s:2:\"id\";i:5275;s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";i:1520443476;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:321;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:470;a:18:{s:4:\"tmpl\";i:492;s:2:\"id\";i:5349;s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";i:1520443493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:92;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:471;a:18:{s:4:\"tmpl\";i:916;s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";i:1572847069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/law-firm-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:344;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:18:{s:4:\"tmpl\";i:489;s:2:\"id\";i:5324;s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";i:1520443488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:381;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:473;a:18:{s:4:\"tmpl\";i:920;s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm &#8211; Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";i:1572847113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/law-firm-team/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:314;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:18:{s:4:\"tmpl\";i:869;s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";i:1564641889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:166;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:475;a:18:{s:4:\"tmpl\";i:880;s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym &#8211; Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";i:1567392934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:590;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:18:{s:4:\"tmpl\";i:494;s:2:\"id\";i:5368;s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";i:1520443497;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:273;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:477;a:18:{s:4:\"tmpl\";i:917;s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm &#8211; Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";i:1572847078;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-careers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:640;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:18:{s:4:\"tmpl\";i:425;s:2:\"id\";i:4436;s:5:\"title\";s:11:\"Contact  16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";i:1520443293;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:68;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:479;a:18:{s:4:\"tmpl\";i:915;s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";i:1572847054;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/law-firm-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:110;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:18:{s:4:\"tmpl\";i:423;s:2:\"id\";i:4420;s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";i:1520443289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:127;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:481;a:18:{s:4:\"tmpl\";i:921;s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm &#8211; Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";i:1572847120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-partner/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:471;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:18:{s:4:\"tmpl\";i:534;s:2:\"id\";i:5836;s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:76;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:483;a:18:{s:4:\"tmpl\";i:865;s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency &#8211; Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";i:1564641872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/digital-agency-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:170;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:18:{s:4:\"tmpl\";i:879;s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym &#8211; Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";i:1567392930;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:554;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:485;a:18:{s:4:\"tmpl\";i:535;s:2:\"id\";i:5844;s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";i:1520443599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:313;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:18:{s:4:\"tmpl\";i:922;s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";i:1572847130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:304;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:487;a:18:{s:4:\"tmpl\";i:430;s:2:\"id\";i:4476;s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";i:1520443303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:187;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:488;a:18:{s:4:\"tmpl\";i:918;s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";i:1572847096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/law-firm-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:296;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:489;a:18:{s:4:\"tmpl\";i:864;s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency &#8211; Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";i:1564641867;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/digital-agency-social-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:361;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:490;a:18:{s:4:\"tmpl\";i:476;s:2:\"id\";i:5214;s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";i:1520443462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:106;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:491;a:18:{s:4:\"tmpl\";i:878;s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym &#8211; Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";i:1567392927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:674;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:492;a:18:{s:4:\"tmpl\";i:882;s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";i:1567392943;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/gym-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:229;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:493;a:18:{s:4:\"tmpl\";i:919;s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm &#8211; Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";i:1572847105;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:339;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:18:{s:4:\"tmpl\";i:478;s:2:\"id\";i:5230;s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";i:1520443466;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:335;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:495;a:18:{s:4:\"tmpl\";i:868;s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency &#8211; Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";i:1564641885;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/digital-agency-clients/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:424;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:18:{s:4:\"tmpl\";i:481;s:2:\"id\";i:5257;s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";i:1520443472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:490;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:497;a:18:{s:4:\"tmpl\";i:881;s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";i:1567392939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/gym-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:164;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:579;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:18:{s:4:\"tmpl\";i:532;s:2:\"id\";i:5820;s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:357;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:499;a:18:{s:4:\"tmpl\";i:877;s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym &#8211; Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";i:1567392923;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:736;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:500;a:18:{s:4:\"tmpl\";i:422;s:2:\"id\";i:4411;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";i:1520443287;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:167;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:217;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:501;a:18:{s:4:\"tmpl\";i:867;s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency &#8211; Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";i:1564641881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/contact-digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:168;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:156;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:18:{s:4:\"tmpl\";i:533;s:2:\"id\";i:5828;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:495;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:503;a:18:{s:4:\"tmpl\";i:876;s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";i:1567392917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:624;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:18:{s:4:\"tmpl\";i:424;s:2:\"id\";i:4428;s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";i:1520443291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:131;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:505;a:18:{s:4:\"tmpl\";i:426;s:2:\"id\";i:4444;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443295;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:93;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:506;a:18:{s:4:\"tmpl\";i:432;s:2:\"id\";i:4492;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";i:1520443307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:31;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:507;a:18:{s:4:\"tmpl\";i:427;s:2:\"id\";i:4452;s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:150;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:508;a:18:{s:4:\"tmpl\";i:429;s:2:\"id\";i:4468;s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";i:1520443301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:72;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:509;a:18:{s:4:\"tmpl\";i:431;s:2:\"id\";i:4484;s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";i:1520443305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:260;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:18:{s:4:\"tmpl\";i:428;s:2:\"id\";i:4460;s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:80;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:511;a:18:{s:4:\"tmpl\";i:613;s:2:\"id\";i:5558;s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";i:1520520684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:69;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:512;a:18:{s:4:\"tmpl\";i:634;s:2:\"id\";i:5939;s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";i:1520520760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:118;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:513;a:18:{s:4:\"tmpl\";i:633;s:2:\"id\";i:5930;s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";i:1520520758;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:84;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:514;a:18:{s:4:\"tmpl\";i:632;s:2:\"id\";i:5921;s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";i:1520520757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:234;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:515;a:18:{s:4:\"tmpl\";i:618;s:2:\"id\";i:5607;s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";i:1520520695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:11;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:516;a:18:{s:4:\"tmpl\";i:574;s:2:\"id\";i:6017;s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";i:1520520331;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:122;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:18:{s:4:\"tmpl\";i:628;s:2:\"id\";i:5885;s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";i:1520520751;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:256;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:518;a:18:{s:4:\"tmpl\";i:627;s:2:\"id\";i:5877;s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";i:1520520749;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:677;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:519;a:18:{s:4:\"tmpl\";i:625;s:2:\"id\";i:5860;s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";i:1520520746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:63;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:520;a:18:{s:4:\"tmpl\";i:626;s:2:\"id\";i:5869;s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";i:1520520747;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:486;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:521;a:18:{s:4:\"tmpl\";i:611;s:2:\"id\";i:5542;s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";i:1520520681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:270;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:522;a:18:{s:4:\"tmpl\";i:614;s:2:\"id\";i:5567;s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";i:1520520685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:225;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:523;a:18:{s:4:\"tmpl\";i:629;s:2:\"id\";i:5893;s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";i:1520520752;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:457;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:524;a:18:{s:4:\"tmpl\";i:619;s:2:\"id\";i:5634;s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";i:1520520699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:255;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:525;a:18:{s:4:\"tmpl\";i:620;s:2:\"id\";i:5642;s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";i:1520520701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:262;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:526;a:18:{s:4:\"tmpl\";i:615;s:2:\"id\";i:5583;s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";i:1520520689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:117;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:527;a:18:{s:4:\"tmpl\";i:630;s:2:\"id\";i:5904;s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";i:1520520754;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:517;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:528;a:18:{s:4:\"tmpl\";i:631;s:2:\"id\";i:5912;s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";i:1520520755;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:702;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:529;a:18:{s:4:\"tmpl\";i:473;s:2:\"id\";i:5189;s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";i:1520443456;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:631;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:530;a:18:{s:4:\"tmpl\";i:623;s:2:\"id\";i:5667;s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";i:1520520705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:250;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:531;a:18:{s:4:\"tmpl\";i:474;s:2:\"id\";i:5198;s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";i:1520443458;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:511;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:18:{s:4:\"tmpl\";i:475;s:2:\"id\";i:5206;s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";i:1520443459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:611;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:533;a:18:{s:4:\"tmpl\";i:480;s:2:\"id\";i:5249;s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";i:1520443470;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-32/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:409;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:534;a:18:{s:4:\"tmpl\";i:612;s:2:\"id\";i:5550;s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";i:1520520682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-33/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:562;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:535;a:18:{s:4:\"tmpl\";i:536;s:2:\"id\";i:5852;s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";i:1520443600;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-34/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:828;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:536;a:18:{s:4:\"tmpl\";i:624;s:2:\"id\";i:5675;s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";i:1520520707;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:484;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:537;a:18:{s:4:\"tmpl\";i:616;s:2:\"id\";i:5591;s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";i:1520520691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:130;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:538;a:18:{s:4:\"tmpl\";i:617;s:2:\"id\";i:5599;s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";i:1520520693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:362;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:539;a:18:{s:4:\"tmpl\";i:514;s:2:\"id\";i:5575;s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";i:1520443543;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:240;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:586;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:540;a:18:{s:4:\"tmpl\";i:622;s:2:\"id\";i:5658;s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";i:1520520704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:243;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:235;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:541;a:18:{s:4:\"tmpl\";i:621;s:2:\"id\";i:5650;s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";i:1520520702;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:244;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:148;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:542;a:18:{s:4:\"tmpl\";i:1061;s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/dance-studio-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:22:\"[\"404\",\"Dance Studio\"]\";s:10:\"menu_order\";i:246;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:710;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:18:{s:4:\"tmpl\";i:1062;s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Footer\"]\";s:10:\"menu_order\";i:247;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:243;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:544;a:18:{s:4:\"tmpl\";i:1063;s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Header\"]\";s:10:\"menu_order\";i:248;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:67;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:18:{s:4:\"tmpl\";i:874;s:2:\"id\";i:11192;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg\";s:12:\"tmpl_created\";i:1564642399;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Footer\",\"Marketing\"]\";s:10:\"menu_order\";i:250;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:105;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:546;a:18:{s:4:\"tmpl\";i:873;s:2:\"id\";i:11198;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-digital-marketing-agency.png\";s:12:\"tmpl_created\";i:1564642395;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Header\",\"Marketing\"]\";s:10:\"menu_order\";i:251;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:10;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:18:{s:4:\"tmpl\";i:872;s:2:\"id\";i:11204;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg\";s:12:\"tmpl_created\";i:1564642389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:253;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:239;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:548;a:18:{s:4:\"tmpl\";i:871;s:2:\"id\";i:11220;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png\";s:12:\"tmpl_created\";i:1564642385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:255;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:73;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:549;a:18:{s:4:\"tmpl\";i:870;s:2:\"id\";i:11231;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png\";s:12:\"tmpl_created\";i:1564642380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:257;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:71;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:550;a:18:{s:4:\"tmpl\";i:520;s:2:\"id\";i:5711;s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";i:1520443571;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:260;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:231;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:551;a:18:{s:4:\"tmpl\";i:523;s:2:\"id\";i:5737;s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";i:1520443576;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:261;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:112;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:552;a:18:{s:4:\"tmpl\";i:524;s:2:\"id\";i:5746;s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";i:1520443578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:264;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:305;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:553;a:18:{s:4:\"tmpl\";i:519;s:2:\"id\";i:5703;s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";i:1520443569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:265;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:38;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:554;a:18:{s:4:\"tmpl\";i:521;s:2:\"id\";i:5719;s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";i:1520443573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:267;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:251;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:555;a:18:{s:4:\"tmpl\";i:522;s:2:\"id\";i:5729;s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";i:1520443575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:269;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:327;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:556;a:18:{s:4:\"tmpl\";i:525;s:2:\"id\";i:5755;s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";i:1520443580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:271;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:180;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:557;a:18:{s:4:\"tmpl\";i:526;s:2:\"id\";i:5764;s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";i:1520443582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:273;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:474;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:558;a:18:{s:4:\"tmpl\";i:517;s:2:\"id\";i:5684;s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";i:1520443565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:274;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:193;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:559;a:18:{s:4:\"tmpl\";i:518;s:2:\"id\";i:5693;s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";i:1520443567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:276;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:515;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:560;a:18:{s:4:\"tmpl\";i:548;s:2:\"id\";i:6053;s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";i:1520443645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:277;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:463;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:561;a:18:{s:4:\"tmpl\";i:542;s:2:\"id\";i:5991;s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";i:1520443632;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:279;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:265;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:562;a:18:{s:4:\"tmpl\";i:547;s:2:\"id\";i:6044;s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";i:1520443643;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:280;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:163;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:563;a:18:{s:4:\"tmpl\";i:566;s:2:\"id\";i:6212;s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";i:1520443684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:281;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:98;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:564;a:18:{s:4:\"tmpl\";i:567;s:2:\"id\";i:6220;s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";i:1520443685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:282;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:189;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:565;a:18:{s:4:\"tmpl\";i:541;s:2:\"id\";i:5983;s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";i:1520443630;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:283;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:351;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:566;a:18:{s:4:\"tmpl\";i:540;s:2:\"id\";i:5974;s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";i:1520443629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:181;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:567;a:18:{s:4:\"tmpl\";i:516;s:2:\"id\";i:5624;s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";i:1520443553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:352;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:568;a:18:{s:4:\"tmpl\";i:515;s:2:\"id\";i:5615;s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";i:1520443551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:119;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:569;a:18:{s:4:\"tmpl\";i:539;s:2:\"id\";i:5963;s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";i:1520443626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:291;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:133;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:570;a:18:{s:4:\"tmpl\";i:565;s:2:\"id\";i:6204;s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";i:1520443681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:292;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:223;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:571;a:18:{s:4:\"tmpl\";i:564;s:2:\"id\";i:6196;s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";i:1520443680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:294;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:113;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:572;a:18:{s:4:\"tmpl\";i:1033;s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/flooring-company-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:296;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:573;a:18:{s:4:\"tmpl\";i:1032;s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:297;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:275;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:18:{s:4:\"tmpl\";i:1031;s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Footer\"]\";s:10:\"menu_order\";i:299;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:192;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:18:{s:4:\"tmpl\";i:1030;s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Header\"]\";s:10:\"menu_order\";i:302;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:333;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:18:{s:4:\"tmpl\";i:1029;s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company &#8211; Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:303;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:226;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:18:{s:4:\"tmpl\";i:651;s:2:\"id\";i:7837;s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";i:1524582852;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:305;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:539;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:18:{s:4:\"tmpl\";i:647;s:2:\"id\";i:7937;s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";i:1524582665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-010/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:308;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:115;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:18:{s:4:\"tmpl\";i:646;s:2:\"id\";i:7950;s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";i:1524582631;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-011/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:310;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:203;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:18:{s:4:\"tmpl\";i:645;s:2:\"id\";i:7959;s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";i:1524582605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-012/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:311;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:140;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:18:{s:4:\"tmpl\";i:644;s:2:\"id\";i:7982;s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";i:1524582468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-013/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:314;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:212;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:18:{s:4:\"tmpl\";i:643;s:2:\"id\";i:7997;s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";i:1524582343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-014/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:316;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:41;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:18:{s:4:\"tmpl\";i:693;s:2:\"id\";i:9119;s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";i:1532428138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/demo/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:317;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:154;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:18:{s:4:\"tmpl\";i:652;s:2:\"id\";i:7852;s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";i:1524582875;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:320;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:96;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:18:{s:4:\"tmpl\";i:653;s:2:\"id\";i:7862;s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";i:1524582903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:321;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:91;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:18:{s:4:\"tmpl\";i:654;s:2:\"id\";i:7871;s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";i:1524582927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:323;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:55;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:587;a:18:{s:4:\"tmpl\";i:655;s:2:\"id\";i:7884;s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";i:1524582944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:325;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:109;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:18:{s:4:\"tmpl\";i:656;s:2:\"id\";i:7892;s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";i:1524583015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:326;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:146;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:18:{s:4:\"tmpl\";i:650;s:2:\"id\";i:7904;s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";i:1524582814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:328;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:186;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:18:{s:4:\"tmpl\";i:649;s:2:\"id\";i:7917;s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";i:1524582788;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:329;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:144;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:18:{s:4:\"tmpl\";i:648;s:2:\"id\";i:7927;s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";i:1524582691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:331;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:100;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:18:{s:4:\"tmpl\";i:642;s:2:\"id\";i:4676;s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";i:1522014215;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer_7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:338;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:346;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:18:{s:4:\"tmpl\";i:637;s:2:\"id\";i:7627;s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";i:1521547332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:340;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:83;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:18:{s:4:\"tmpl\";i:638;s:2:\"id\";i:7638;s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";i:1521547502;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:342;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:147;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:18:{s:4:\"tmpl\";i:888;s:2:\"id\";i:11424;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png\";s:12:\"tmpl_created\";i:1567393309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";i:344;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:769;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:18:{s:4:\"tmpl\";i:887;s:2:\"id\";i:11435;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png\";s:12:\"tmpl_created\";i:1567393296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:346;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:507;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:597;a:18:{s:4:\"tmpl\";i:886;s:2:\"id\";i:11445;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png\";s:12:\"tmpl_created\";i:1567393229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:349;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:479;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:18:{s:4:\"tmpl\";i:885;s:2:\"id\";i:11453;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png\";s:12:\"tmpl_created\";i:1567393224;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"Footer\",\"Gym\"]\";s:10:\"menu_order\";i:351;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:331;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:18:{s:4:\"tmpl\";i:884;s:2:\"id\";i:11461;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-gym-and-fitness.png\";s:12:\"tmpl_created\";i:1567393219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"Header\"]\";s:10:\"menu_order\";i:352;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:135;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:18:{s:4:\"tmpl\";i:635;s:2:\"id\";i:7596;s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";i:1521546999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:354;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:17;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:18:{s:4:\"tmpl\";i:663;s:2:\"id\";i:7801;s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";i:1524583659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:356;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:14;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:18:{s:4:\"tmpl\";i:658;s:2:\"id\";i:7812;s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";i:1524583298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:358;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:103;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:603;a:18:{s:4:\"tmpl\";i:657;s:2:\"id\";i:7825;s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";i:1524583273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:360;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:75;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:18:{s:4:\"tmpl\";i:694;s:2:\"id\";i:9127;s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";i:1532428699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:362;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:58;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:18:{s:4:\"tmpl\";i:636;s:2:\"id\";i:7615;s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";i:1521547237;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:365;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:33;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:18:{s:4:\"tmpl\";i:665;s:2:\"id\";i:7713;s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";i:1524584780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:367;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:28;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:607;a:18:{s:4:\"tmpl\";i:659;s:2:\"id\";i:7724;s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";i:1524583367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:369;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:13;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:18:{s:4:\"tmpl\";i:660;s:2:\"id\";i:7734;s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";i:1524583436;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:371;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:18;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:18:{s:4:\"tmpl\";i:666;s:2:\"id\";i:7744;s:5:\"title\";s:8:\"Header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";i:1524584784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:372;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:94;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:18:{s:4:\"tmpl\";i:664;s:2:\"id\";i:7754;s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";i:1524583712;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:375;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:143;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:611;a:18:{s:4:\"tmpl\";i:661;s:2:\"id\";i:7771;s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";i:1524583540;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:376;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:60;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:18:{s:4:\"tmpl\";i:662;s:2:\"id\";i:7787;s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";i:1524583598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:379;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:78;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:613;a:18:{s:4:\"tmpl\";i:572;s:2:\"id\";i:6266;s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";i:1520443695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:380;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:35;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:614;a:18:{s:4:\"tmpl\";i:528;s:2:\"id\";i:5783;s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";i:1520443586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:383;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:567;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:615;a:18:{s:4:\"tmpl\";i:527;s:2:\"id\";i:5773;s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";i:1520443584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:384;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:179;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:616;a:18:{s:4:\"tmpl\";i:479;s:2:\"id\";i:5238;s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";i:1520443468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:386;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:555;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:617;a:18:{s:4:\"tmpl\";i:573;s:2:\"id\";i:6274;s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";i:1520443698;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:389;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:88;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:618;a:18:{s:4:\"tmpl\";i:569;s:2:\"id\";i:6239;s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";i:1520443689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:391;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:34;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:619;a:18:{s:4:\"tmpl\";i:571;s:2:\"id\";i:6258;s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";i:1520443693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:393;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:470;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:620;a:18:{s:4:\"tmpl\";i:570;s:2:\"id\";i:6249;s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";i:1520443691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:395;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:85;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:621;a:18:{s:4:\"tmpl\";i:568;s:2:\"id\";i:6230;s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";i:1520443687;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:396;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:542;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:18:{s:4:\"tmpl\";i:530;s:2:\"id\";i:5801;s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";i:1520443589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:398;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:37;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:623;a:18:{s:4:\"tmpl\";i:531;s:2:\"id\";i:5811;s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";i:1520443591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:400;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:86;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:624;a:18:{s:4:\"tmpl\";i:529;s:2:\"id\";i:5792;s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";i:1520443588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:403;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:244;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:625;a:18:{s:4:\"tmpl\";i:978;s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";i:1586148737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:405;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:795;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:626;a:18:{s:4:\"tmpl\";i:979;s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";i:1586148742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Business\",\"Footer\",\"Interior Design\"]\";s:10:\"menu_order\";i:406;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:178;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:627;a:18:{s:4:\"tmpl\";i:980;s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design &#8211; Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i:1586148746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Business\",\"Header\",\"Interior Design\"]\";s:10:\"menu_order\";i:408;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:64;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:628;a:18:{s:4:\"tmpl\";i:977;s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design &#8211; News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";i:1586148733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:410;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:132;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:629;a:18:{s:4:\"tmpl\";i:976;s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design &#8211; Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";i:1586148728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:413;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:108;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:630;a:18:{s:4:\"tmpl\";i:975;s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design &#8211; Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";i:1586148723;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:414;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:324;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:18:{s:4:\"tmpl\";i:1011;s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant &#8211; 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:416;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:647;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:18:{s:4:\"tmpl\";i:1012;s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:41:\"[\"Food\",\"Footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:419;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:238;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:18:{s:4:\"tmpl\";i:1013;s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese Restaurant &#8211; Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:41:\"[\"Food\",\"Header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:421;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:274;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:634;a:18:{s:4:\"tmpl\";i:914;s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";i:1572846979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:422;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:716;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:635;a:18:{s:4:\"tmpl\";i:913;s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm &#8211; Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";i:1572846967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:424;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:294;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:18:{s:4:\"tmpl\";i:912;s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";i:1572846958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:425;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:240;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:18:{s:4:\"tmpl\";i:911;s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i:1572846935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:427;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:39;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:18:{s:4:\"tmpl\";i:910;s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm &#8211; Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";i:1572846925;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:430;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:433;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:639;a:18:{s:4:\"tmpl\";i:909;s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";i:1572846914;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:432;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:214;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:18:{s:4:\"tmpl\";i:1022;s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate &#8211; 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:433;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:720;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:18:{s:4:\"tmpl\";i:1023;s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Footer\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:434;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:505;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:18:{s:4:\"tmpl\";i:1024;s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Header\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:436;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:157;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:643;a:18:{s:4:\"tmpl\";i:1026;s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate &#8211; Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:438;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:420;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:18:{s:4:\"tmpl\";i:1027;s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate &#8211; Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:441;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:665;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:18:{s:4:\"tmpl\";i:1025;s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate &#8211; single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:442;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:441;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:18:{s:4:\"tmpl\";i:950;s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";i:1579060746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/magazine-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:445;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:734;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:18:{s:4:\"tmpl\";i:949;s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine &#8211; Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";i:1579060737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:447;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:272;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:18:{s:4:\"tmpl\";i:946;s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";i:1579060715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:28:\"[\"Blog\",\"Footer\",\"Magazine\"]\";s:10:\"menu_order\";i:448;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:349;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:649;a:18:{s:4:\"tmpl\";i:945;s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i:1579060701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:28:\"[\"Blog\",\"Header\",\"Magazine\"]\";s:10:\"menu_order\";i:450;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:197;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:18:{s:4:\"tmpl\";i:947;s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine &#8211; Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";i:1579060722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-search/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:452;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:509;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:18:{s:4:\"tmpl\";i:944;s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";i:1579060692;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:453;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:175;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:18:{s:4:\"tmpl\";i:943;s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";i:1579060680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:454;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:129;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:18:{s:4:\"tmpl\";i:942;s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";i:1579060669;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:457;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:246;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:18:{s:4:\"tmpl\";i:941;s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";i:1579060659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:459;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:489;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:18:{s:4:\"tmpl\";i:948;s:2:\"id\";i:12652;s:5:\"title\";s:17:\"Magazine- Archiv2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv2_s.png\";s:12:\"tmpl_created\";i:1579060730;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:461;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:585;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:18:{s:4:\"tmpl\";i:990;s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";i:1587474710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/online-course-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:462;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:498;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:657;a:18:{s:4:\"tmpl\";i:987;s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course &#8211; End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";i:1587474682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:464;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:408;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:18:{s:4:\"tmpl\";i:989;s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";i:1587474701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Footer\"]\";s:10:\"menu_order\";i:466;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:308;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:18:{s:4:\"tmpl\";i:988;s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course &#8211; Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i:1587474693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Header\"]\";s:10:\"menu_order\";i:469;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:519;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:18:{s:4:\"tmpl\";i:986;s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course &#8211; Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";i:1587474673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:471;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:578;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:18:{s:4:\"tmpl\";i:953;s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";i:1582091623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/photography-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:33:\"[\"404\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:473;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:706;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:18:{s:4:\"tmpl\";i:954;s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography &#8211; Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";i:1582091742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:475;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:405;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:18:{s:4:\"tmpl\";i:955;s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";i:1582091903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:36:\"[\"Footer\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:477;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:230;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:18:{s:4:\"tmpl\";i:957;s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography &#8211; Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i:1582092483;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:36:\"[\"Header\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:478;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:205;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:18:{s:4:\"tmpl\";i:956;s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";i:1582092351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:480;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:645;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:18:{s:4:\"tmpl\";i:901;s:2:\"id\";i:11807;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/09/404_small.png\";s:12:\"tmpl_created\";i:1569430070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:483;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:497;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:18:{s:4:\"tmpl\";i:900;s:2:\"id\";i:11832;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Footer_small.png\";s:12:\"tmpl_created\";i:1569430019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Footer\",\"Portfolio\"]\";s:10:\"menu_order\";i:484;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:102;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:18:{s:4:\"tmpl\";i:898;s:2:\"id\";i:11847;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Archiv_small.png\";s:12:\"tmpl_created\";i:1569430010;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:487;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:455;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:18:{s:4:\"tmpl\";i:897;s:2:\"id\";i:11854;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/09/Post_small.png\";s:12:\"tmpl_created\";i:1569429983;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:489;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:609;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:18:{s:4:\"tmpl\";i:904;s:2:\"id\";i:11890;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-design-portfolio.png\";s:12:\"tmpl_created\";i:1571907344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Header\",\"Portfolio\"]\";s:10:\"menu_order\";i:491;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:364;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:18:{s:4:\"tmpl\";i:896;s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio &#8211; Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";i:1569429975;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:493;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:764;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:18:{s:4:\"tmpl\";i:895;s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569429964;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:495;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:816;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:18:{s:4:\"tmpl\";i:903;s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569494236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:496;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:744;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:18:{s:4:\"tmpl\";i:894;s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio &#8211; Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";i:1569429954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:498;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:18:{s:4:\"tmpl\";i:597;s:2:\"id\";i:5019;s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";i:1520520580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:500;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:236;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:676;a:18:{s:4:\"tmpl\";i:609;s:2:\"id\";i:5141;s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";i:1520520601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:503;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:478;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:18:{s:4:\"tmpl\";i:598;s:2:\"id\";i:5027;s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";i:1520520581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:504;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:421;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:18:{s:4:\"tmpl\";i:599;s:2:\"id\";i:5037;s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";i:1520520583;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:507;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:399;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:18:{s:4:\"tmpl\";i:600;s:2:\"id\";i:5057;s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";i:1520520586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:509;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:288;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:18:{s:4:\"tmpl\";i:601;s:2:\"id\";i:5071;s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";i:1520520588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:511;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:329;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:18:{s:4:\"tmpl\";i:603;s:2:\"id\";i:5090;s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";i:1520520591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:513;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:283;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:682;a:18:{s:4:\"tmpl\";i:604;s:2:\"id\";i:5098;s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";i:1520520593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:515;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:211;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:683;a:18:{s:4:\"tmpl\";i:606;s:2:\"id\";i:5115;s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";i:1520520596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:517;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:22;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:684;a:18:{s:4:\"tmpl\";i:608;s:2:\"id\";i:5133;s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";i:1520520599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:519;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:280;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:685;a:18:{s:4:\"tmpl\";i:610;s:2:\"id\";i:5149;s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";i:1520520602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:521;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:635;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:686;a:18:{s:4:\"tmpl\";i:468;s:2:\"id\";i:5045;s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";i:1520443423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:523;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:608;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:687;a:18:{s:4:\"tmpl\";i:602;s:2:\"id\";i:5082;s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";i:1520520589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:524;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:654;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:688;a:18:{s:4:\"tmpl\";i:605;s:2:\"id\";i:5107;s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";i:1520520594;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:527;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:347;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:689;a:18:{s:4:\"tmpl\";i:607;s:2:\"id\";i:5125;s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";i:1520520597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:529;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:386;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:690;a:18:{s:4:\"tmpl\";i:596;s:2:\"id\";i:5007;s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";i:1520520578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:530;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:183;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:691;a:18:{s:4:\"tmpl\";i:434;s:2:\"id\";i:4509;s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";i:1520443310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:532;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:641;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:692;a:18:{s:4:\"tmpl\";i:439;s:2:\"id\";i:4553;s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";i:1520443319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:534;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:506;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:693;a:18:{s:4:\"tmpl\";i:441;s:2:\"id\";i:4572;s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";i:1520443324;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:537;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:248;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:18:{s:4:\"tmpl\";i:442;s:2:\"id\";i:4580;s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";i:1520443326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:539;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:526;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:18:{s:4:\"tmpl\";i:444;s:2:\"id\";i:4597;s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";i:1520443330;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:540;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:450;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:18:{s:4:\"tmpl\";i:446;s:2:\"id\";i:4613;s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";i:1520443334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:543;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:568;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:18:{s:4:\"tmpl\";i:436;s:2:\"id\";i:4529;s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";i:1520443314;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:545;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:613;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:18:{s:4:\"tmpl\";i:438;s:2:\"id\";i:4545;s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";i:1520443317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:547;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:825;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:18:{s:4:\"tmpl\";i:440;s:2:\"id\";i:4562;s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";i:1520443322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:549;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:821;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:18:{s:4:\"tmpl\";i:443;s:2:\"id\";i:4589;s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";i:1520443327;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:551;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:639;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:18:{s:4:\"tmpl\";i:445;s:2:\"id\";i:4605;s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";i:1520443332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:553;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:773;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:18:{s:4:\"tmpl\";i:433;s:2:\"id\";i:4500;s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";i:1520443308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:554;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:451;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:18:{s:4:\"tmpl\";i:435;s:2:\"id\";i:4521;s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";i:1520443312;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:557;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:372;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:18:{s:4:\"tmpl\";i:437;s:2:\"id\";i:4537;s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";i:1520443315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:559;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:841;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:18:{s:4:\"tmpl\";i:701;s:2:\"id\";i:9239;s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";i:1532953482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:561;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:25;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:18:{s:4:\"tmpl\";i:702;s:2:\"id\";i:9247;s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";i:1532953793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:562;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:30;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:18:{s:4:\"tmpl\";i:703;s:2:\"id\";i:9254;s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";i:1532954032;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:563;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:44;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:18:{s:4:\"tmpl\";i:1046;s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/psychologist-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:564;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:493;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:18:{s:4:\"tmpl\";i:1047;s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/psychologist-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:565;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:358;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:18:{s:4:\"tmpl\";i:1048;s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:566;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:500;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:18:{s:4:\"tmpl\";i:1049;s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:567;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:423;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:18:{s:4:\"tmpl\";i:1050;s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist &#8211; single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:568;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:570;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:18:{s:4:\"tmpl\";i:1051;s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist &#8211; single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:569;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:368;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:18:{s:4:\"tmpl\";i:412;s:2:\"id\";i:4313;s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";i:1520443268;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:570;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:53;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:715;a:18:{s:4:\"tmpl\";i:413;s:2:\"id\";i:4324;s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";i:1520443270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:571;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:138;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:716;a:18:{s:4:\"tmpl\";i:418;s:2:\"id\";i:4368;s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";i:1520443279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:572;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:59;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:717;a:18:{s:4:\"tmpl\";i:420;s:2:\"id\";i:4391;s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";i:1520443283;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:573;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:120;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:718;a:18:{s:4:\"tmpl\";i:403;s:2:\"id\";i:4235;s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";i:1520443251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:574;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:172;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:719;a:18:{s:4:\"tmpl\";i:417;s:2:\"id\";i:4357;s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";i:1520443277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:575;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:45;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:720;a:18:{s:4:\"tmpl\";i:415;s:2:\"id\";i:4341;s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";i:1520443274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:576;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:114;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:721;a:18:{s:4:\"tmpl\";i:414;s:2:\"id\";i:4332;s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";i:1520443272;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:577;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:149;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:722;a:18:{s:4:\"tmpl\";i:401;s:2:\"id\";i:4212;s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";i:1520443248;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:578;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:302;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:723;a:18:{s:4:\"tmpl\";i:408;s:2:\"id\";i:4276;s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";i:1520443261;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:579;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:514;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:724;a:18:{s:4:\"tmpl\";i:406;s:2:\"id\";i:4260;s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";i:1520443257;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:580;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:209;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:725;a:18:{s:4:\"tmpl\";i:404;s:2:\"id\";i:4244;s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";i:1520443253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:581;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:596;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:726;a:18:{s:4:\"tmpl\";i:421;s:2:\"id\";i:4400;s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";i:1520443285;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:582;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:438;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:727;a:18:{s:4:\"tmpl\";i:419;s:2:\"id\";i:4376;s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";i:1520443281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:583;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:249;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:728;a:18:{s:4:\"tmpl\";i:416;s:2:\"id\";i:4349;s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";i:1520443275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:584;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:483;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:729;a:18:{s:4:\"tmpl\";i:402;s:2:\"id\";i:4227;s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";i:1520443250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:585;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:553;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:730;a:18:{s:4:\"tmpl\";i:560;s:2:\"id\";i:6162;s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";i:1520443668;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:586;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:550;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:731;a:18:{s:4:\"tmpl\";i:411;s:2:\"id\";i:4302;s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";i:1520443266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:587;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:97;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:732;a:18:{s:4:\"tmpl\";i:410;s:2:\"id\";i:4293;s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";i:1520443265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:588;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:269;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:733;a:18:{s:4:\"tmpl\";i:409;s:2:\"id\";i:4284;s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";i:1520443263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:589;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:21;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:734;a:18:{s:4:\"tmpl\";i:407;s:2:\"id\";i:4268;s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";i:1520443259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:590;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:213;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:735;a:18:{s:4:\"tmpl\";i:405;s:2:\"id\";i:4252;s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";i:1520443255;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:591;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:99;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:736;a:18:{s:4:\"tmpl\";i:677;s:2:\"id\";i:8676;s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";i:1527682423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:592;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:145;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:737;a:18:{s:4:\"tmpl\";i:678;s:2:\"id\";i:8678;s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";i:1527682780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:593;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:82;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:738;a:18:{s:4:\"tmpl\";i:679;s:2:\"id\";i:8679;s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";i:1527682847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:594;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:23;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:18:{s:4:\"tmpl\";i:680;s:2:\"id\";i:8680;s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";i:1527682896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:595;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:190;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:740;a:18:{s:4:\"tmpl\";i:681;s:2:\"id\";i:8681;s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";i:1527682969;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:596;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:218;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:18:{s:4:\"tmpl\";i:682;s:2:\"id\";i:8682;s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";i:1527683026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:597;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:227;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:18:{s:4:\"tmpl\";i:683;s:2:\"id\";i:8703;s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";i:1527683072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:598;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:316;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:18:{s:4:\"tmpl\";i:640;s:2:\"id\";i:7650;s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";i:1521557736;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:599;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:266;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:18:{s:4:\"tmpl\";i:639;s:2:\"id\";i:7663;s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";i:1521547761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:600;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:139;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:745;a:18:{s:4:\"tmpl\";i:705;s:2:\"id\";i:9296;s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";i:1537440673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:601;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:204;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:746;a:18:{s:4:\"tmpl\";i:704;s:2:\"id\";i:9301;s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";i:1537440661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:602;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:336;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:18:{s:4:\"tmpl\";i:706;s:2:\"id\";i:9313;s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";i:1537440798;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:603;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:177;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:748;a:18:{s:4:\"tmpl\";i:707;s:2:\"id\";i:9343;s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";i:1537443531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:604;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:279;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:749;a:18:{s:4:\"tmpl\";i:708;s:2:\"id\";i:9349;s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";i:1537443903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:605;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:253;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:750;a:18:{s:4:\"tmpl\";i:697;s:2:\"id\";i:9174;s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";i:1532950125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:606;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:6;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:751;a:18:{s:4:\"tmpl\";i:698;s:2:\"id\";i:9178;s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";i:1532951997;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:607;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:42;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:752;a:18:{s:4:\"tmpl\";i:699;s:2:\"id\";i:9180;s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";i:1532952302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:608;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:66;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:753;a:18:{s:4:\"tmpl\";i:700;s:2:\"id\";i:9182;s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";i:1532952606;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:609;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:81;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:754;a:18:{s:4:\"tmpl\";i:555;s:2:\"id\";i:6114;s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";i:1520443659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:610;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:692;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:755;a:18:{s:4:\"tmpl\";i:562;s:2:\"id\";i:6178;s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";i:1520443676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:611;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:755;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:756;a:18:{s:4:\"tmpl\";i:561;s:2:\"id\";i:6170;s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";i:1520443670;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:612;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:552;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:757;a:18:{s:4:\"tmpl\";i:563;s:2:\"id\";i:6186;s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";i:1520443678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:613;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:811;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:758;a:18:{s:4:\"tmpl\";i:550;s:2:\"id\";i:6071;s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";i:1520443649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:614;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:328;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:759;a:18:{s:4:\"tmpl\";i:554;s:2:\"id\";i:6106;s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";i:1520443657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:615;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:784;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:760;a:18:{s:4:\"tmpl\";i:551;s:2:\"id\";i:6079;s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";i:1520443651;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:616;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:385;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:761;a:18:{s:4:\"tmpl\";i:552;s:2:\"id\";i:6089;s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";i:1520443653;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:617;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:452;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:762;a:18:{s:4:\"tmpl\";i:549;s:2:\"id\";i:6063;s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";i:1520443647;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:618;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:419;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:763;a:18:{s:4:\"tmpl\";i:553;s:2:\"id\";i:6097;s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";i:1520443655;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:619;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:492;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:764;a:18:{s:4:\"tmpl\";i:538;s:2:\"id\";i:5956;s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";i:1520443623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:620;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:541;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:765;a:18:{s:4:\"tmpl\";i:537;s:2:\"id\";i:5947;s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";i:1520443621;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:621;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:531;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:766;a:18:{s:4:\"tmpl\";i:559;s:2:\"id\";i:6152;s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";i:1520443666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:622;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:557;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:767;a:18:{s:4:\"tmpl\";i:469;s:2:\"id\";i:5157;s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";i:1520443448;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:623;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:293;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:18:{s:4:\"tmpl\";i:472;s:2:\"id\";i:5181;s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";i:1520443454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:624;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:340;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:769;a:18:{s:4:\"tmpl\";i:470;s:2:\"id\";i:5165;s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";i:1520443450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:625;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:620;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:770;a:18:{s:4:\"tmpl\";i:477;s:2:\"id\";i:5222;s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";i:1520443464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:626;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:427;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:18:{s:4:\"tmpl\";i:471;s:2:\"id\";i:5173;s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";i:1520443452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:627;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:237;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:772;a:18:{s:4:\"tmpl\";i:465;s:2:\"id\";i:4801;s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";i:1520443369;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:628;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:188;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:773;a:18:{s:4:\"tmpl\";i:462;s:2:\"id\";i:4770;s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";i:1520443364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/team-12-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:629;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:488;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:774;a:18:{s:4:\"tmpl\";i:458;s:2:\"id\";i:4727;s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";i:1520443356;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:630;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:345;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:775;a:18:{s:4:\"tmpl\";i:543;s:2:\"id\";i:5999;s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";i:1520443634;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:631;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:318;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:776;a:18:{s:4:\"tmpl\";i:455;s:2:\"id\";i:4698;s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";i:1520443350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:632;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:410;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:777;a:18:{s:4:\"tmpl\";i:463;s:2:\"id\";i:4781;s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";i:1520443365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:633;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:330;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:778;a:18:{s:4:\"tmpl\";i:558;s:2:\"id\";i:6144;s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";i:1520443664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:634;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:365;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:779;a:18:{s:4:\"tmpl\";i:464;s:2:\"id\";i:4793;s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";i:1520443367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:635;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:173;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:780;a:18:{s:4:\"tmpl\";i:466;s:2:\"id\";i:4809;s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";i:1520443371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:636;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:465;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:18:{s:4:\"tmpl\";i:459;s:2:\"id\";i:4736;s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";i:1520443358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:637;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:159;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:18:{s:4:\"tmpl\";i:467;s:2:\"id\";i:4818;s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";i:1520443373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:638;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:606;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:783;a:18:{s:4:\"tmpl\";i:461;s:2:\"id\";i:4759;s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";i:1520443362;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:639;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:376;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:784;a:18:{s:4:\"tmpl\";i:460;s:2:\"id\";i:4746;s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";i:1520443360;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:640;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:378;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:785;a:18:{s:4:\"tmpl\";i:457;s:2:\"id\";i:4718;s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";i:1520443354;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:641;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:359;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:786;a:18:{s:4:\"tmpl\";i:456;s:2:\"id\";i:4706;s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";i:1520443352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:642;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:299;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:787;a:18:{s:4:\"tmpl\";i:544;s:2:\"id\";i:6008;s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";i:1520443636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:643;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:277;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:788;a:18:{s:4:\"tmpl\";i:454;s:2:\"id\";i:4690;s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";i:1520443348;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:644;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:402;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:789;a:18:{s:4:\"tmpl\";i:586;s:2:\"id\";i:4921;s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";i:1520520562;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:645;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:198;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:790;a:18:{s:4:\"tmpl\";i:582;s:2:\"id\";i:4889;s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";i:1520520556;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:646;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:522;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:791;a:18:{s:4:\"tmpl\";i:580;s:2:\"id\";i:4871;s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";i:1520520552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:647;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:391;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:792;a:18:{s:4:\"tmpl\";i:578;s:2:\"id\";i:4854;s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";i:1520520549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:648;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:741;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:793;a:18:{s:4:\"tmpl\";i:595;s:2:\"id\";i:4995;s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";i:1520520577;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:649;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:411;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:794;a:18:{s:4:\"tmpl\";i:593;s:2:\"id\";i:4979;s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";i:1520520573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:650;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:544;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:795;a:18:{s:4:\"tmpl\";i:576;s:2:\"id\";i:4835;s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";i:1520520546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:651;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:401;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:796;a:18:{s:4:\"tmpl\";i:594;s:2:\"id\";i:4987;s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";i:1520520575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:652;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:199;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:797;a:18:{s:4:\"tmpl\";i:577;s:2:\"id\";i:4843;s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";i:1520520548;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:653;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:780;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:798;a:18:{s:4:\"tmpl\";i:579;s:2:\"id\";i:4863;s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";i:1520520551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:654;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:599;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:799;a:18:{s:4:\"tmpl\";i:581;s:2:\"id\";i:4880;s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";i:1520520554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:655;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:653;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:800;a:18:{s:4:\"tmpl\";i:583;s:2:\"id\";i:4897;s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";i:1520520557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:656;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:289;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:801;a:18:{s:4:\"tmpl\";i:584;s:2:\"id\";i:4905;s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";i:1520520559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:657;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:221;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:802;a:18:{s:4:\"tmpl\";i:585;s:2:\"id\";i:4913;s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";i:1520520561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:658;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:566;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:803;a:18:{s:4:\"tmpl\";i:575;s:2:\"id\";i:4826;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";i:1520520544;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:659;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:395;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:804;a:18:{s:4:\"tmpl\";i:587;s:2:\"id\";i:4929;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";i:1520520564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:660;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:206;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:805;a:18:{s:4:\"tmpl\";i:591;s:2:\"id\";i:4963;s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";i:1520520570;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:661;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:546;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:806;a:18:{s:4:\"tmpl\";i:592;s:2:\"id\";i:4971;s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";i:1520520572;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:662;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:718;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:807;a:18:{s:4:\"tmpl\";i:589;s:2:\"id\";i:4947;s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";i:1520520567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:663;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:496;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:808;a:18:{s:4:\"tmpl\";i:590;s:2:\"id\";i:4955;s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";i:1520520569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:664;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:695;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:809;a:18:{s:4:\"tmpl\";i:588;s:2:\"id\";i:4939;s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";i:1520520565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:665;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:341;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:810;a:18:{s:4:\"tmpl\";i:928;s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";i:1575960378;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/travel-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:666;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:712;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:811;a:18:{s:4:\"tmpl\";i:929;s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel &#8211; Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";i:1575960387;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:667;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:487;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:812;a:18:{s:4:\"tmpl\";i:927;s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel &#8211; Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i:1575960371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:668;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:434;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:813;a:18:{s:4:\"tmpl\";i:930;s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel &#8211; Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";i:1575960397;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:669;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:663;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:814;a:18:{s:4:\"tmpl\";i:931;s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel &#8211; Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";i:1575960404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:670;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:548;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:815;a:18:{s:4:\"tmpl\";i:926;s:2:\"id\";i:12492;s:5:\"title\";s:14:\"Travel -Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Footer_s.png\";s:12:\"tmpl_created\";i:1575960358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:671;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:322;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:816;a:18:{s:4:\"tmpl\";i:1068;s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/travel-blog-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:672;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:759;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:817;a:18:{s:4:\"tmpl\";i:1069;s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:673;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:468;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:818;a:18:{s:4:\"tmpl\";i:1070;s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:674;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:431;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:819;a:18:{s:4:\"tmpl\";i:1071;s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:675;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:377;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:820;a:18:{s:4:\"tmpl\";i:1067;s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:676;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:228;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:821;a:18:{s:4:\"tmpl\";i:1072;s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:677;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:482;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:822;a:18:{s:4:\"tmpl\";i:1066;s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:678;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:454;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(190, 'elementor_remote_info_feed_data', 'a:3:{i:0;a:5:{s:5:\"title\";s:73:\"Elementor 3.16 - Faster Performance, Flexible Design, and more Accessible\";s:7:\"excerpt\";s:210:\"Elementor 3.16 activates Flexbox Containers by default for new websites, improves site loading speed with performance enhancements, increases accessibility for visitors who use assistive technologies, and more.\";s:7:\"created\";i:1695134049;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:152:\"https://elementor.com/blog/316-faster-performance-flexible-design-accessibility/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:82:\"Elementor 3.15 is Here - Check out The Taxonomy Filter, Nested Accordion, and More\";s:7:\"excerpt\";s:241:\"This release includes the first phase of the much-awaited Taxonomy Filter, the new and improved Accordion widget with nested items, enhanced styling capabilities for Carousel widgets, fun new Elementor AI Image tools, and the new Apps Page. \";s:7:\"created\";i:1691513693;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:157:\"https://elementor.com/blog/introducing-315-taxonomy-filter-nested-accordion-and-more/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:97:\"Introducing Elementor 3.14 - Gain More Design Flexibility with Nested Carousels and Loop Grid Ads\";s:7:\"excerpt\";s:239:\"This version includes a new Carousel widget, extends the Loop Grid with the ability to place static content within the Loop, a Global Styles Preview, and a multitude of highly requested styling capabilities, and new Elementor AI features. \";s:7:\"created\";i:1688394655;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:154:\"https://elementor.com/blog/introducing-314-nested-carousel-loop-grid-ads-and-more/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}', 'no'),
(198, 'current_theme', 'OceanWP', 'yes'),
(199, 'theme_mods_oceanwp', 'a:32:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:11:\"topbar_menu\";i:2;}s:18:\"custom_css_post_id\";i:324;s:16:\"header_textcolor\";s:5:\"blank\";s:24:\"ocean_menu_search_source\";s:4:\"page\";s:28:\"ocean_page_header_visibility\";s:16:\"hide-all-devices\";s:17:\"ocean_breadcrumbs\";b:0;s:27:\"ocean_breadcrumb_show_title\";b:0;s:23:\"ocean_breadcrumb_schema\";b:0;s:24:\"ocean_page_single_layout\";s:11:\"full-screen\";s:31:\"ocean_page_single_sidebar_order\";s:15:\"sidebar-content\";s:31:\"ocean_breadcrumb_posts_taxonomy\";s:4:\"none\";s:34:\"ocean_breadcrumb_products_taxonomy\";s:4:\"none\";s:16:\"ocean_scroll_top\";b:0;s:19:\"ocean_schema_markup\";b:0;s:24:\"ocean_blog_image_overlay\";b:1;s:27:\"ocean_footer_copyright_text\";s:113:\"2023 beyond Color. All rights reserved  |  Privacy Policy  |  Terms in use  |  Branding Website Design by theav  \";s:30:\"ocean_bottom_footer_background\";s:7:\"#000000\";s:20:\"ocean_footer_widgets\";b:0;s:19:\"ocean_primary_color\";s:7:\"#0a0000\";s:18:\"ocean_header_style\";s:6:\"custom\";s:23:\"ocean_top_header_height\";i:0;s:30:\"ocean_has_header_border_bottom\";b:0;s:21:\"ocean_menu_arrow_down\";b:0;s:21:\"ocean_menu_arrow_side\";b:0;s:30:\"ocean_menu_dropdown_top_border\";b:0;s:19:\"ocean_menu_position\";s:11:\"center-menu\";s:13:\"ocean_top_bar\";b:0;s:11:\"custom_logo\";i:69;s:31:\"ocean_bottom_footer_top_padding\";s:2:\"35\";s:34:\"ocean_bottom_footer_bottom_padding\";s:2:\"35\";s:19:\"ocean_footer_bottom\";b:0;}', 'yes'),
(200, 'theme_switched', '', 'yes'),
(219, 'nav_menu_options', 'a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}', 'off'),
(222, 'elementor_log', 'a:42:{s:32:\"3762692d5561a0658202b2f1e086c03e\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-01-30 07:09:55\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-01-30 07:09:55\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"27979d2715a906ddc17ad83bdc802c75\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-01-30 07:09:55\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-01-30 07:09:55\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"59f5eaa5c8bafa5532456b9c1351c646\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-01-30 07:09:55\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.18.3\";s:2:\"to\";s:6:\"3.19.0\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-01-30 07:09:55\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.18.3\";s:2:\"to\";s:6:\"3.19.0\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"2cfa7d97aa19e25f711de0a78b566464\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-01-30 07:09:55\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.18.3\";s:2:\"to\";s:6:\"3.19.0\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-01-30 07:09:55\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.18.3\";s:2:\"to\";s:6:\"3.19.0\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"0bfe84f973530ef07200582b3d1220aa\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-02-07 01:07:13\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-07 01:07:13\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"94b2c1190cf2403203fa4593516bb6d9\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-02-07 01:07:13\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-07 01:07:13\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"b767a978547b0f26bc080cc303a0c34e\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-02-07 01:07:13\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-07 01:07:13\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"4312cf951919d2b1162c6f14e26bc440\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-02-07 01:07:13\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.0\";s:2:\"to\";s:6:\"3.19.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-07 01:07:13\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.0\";s:2:\"to\";s:6:\"3.19.1\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"4378dc963aa00c9a95c9625eb3b8514f\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-02-07 01:07:13\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.0\";s:2:\"to\";s:6:\"3.19.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-07 01:07:13\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.0\";s:2:\"to\";s:6:\"3.19.1\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"93fa5ff1f89dc17663facfa90f76312f\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-02-09 07:07:05\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-09 07:07:05\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"a44a8acfa2b185946b07dea8dd056091\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-02-09 07:07:05\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-09 07:07:05\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"2723d1e1d00209d5b68b00c3baa39741\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-02-09 07:07:05\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-09 07:07:05\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"13fc91ca79e64d0e88f1a90543d10518\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-02-09 07:07:05\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.1\";s:2:\"to\";s:6:\"3.19.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-09 07:07:05\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.1\";s:2:\"to\";s:6:\"3.19.2\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"9cfe97c5a9d7c67c053f15684c21c283\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-02-09 07:07:05\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.1\";s:2:\"to\";s:6:\"3.19.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-09 07:07:05\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.1\";s:2:\"to\";s:6:\"3.19.2\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"10b6105f5344a22cd0607a8c7bede7ff\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-02-28 07:06:58\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-28 07:06:58\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"a7e37c7fd029c9a75ccab181c2e0f094\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-02-28 07:06:58\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-28 07:06:58\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"8bd16984330b342a752eae239fb713fa\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-02-28 07:06:59\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-28 07:06:59\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"bee14309088815bd747e17e7ad811023\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-02-28 07:06:59\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.2\";s:2:\"to\";s:6:\"3.19.3\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-28 07:06:59\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.2\";s:2:\"to\";s:6:\"3.19.3\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"61a7bbfb1424ab1a0cce1377ada88a5a\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-02-28 07:06:59\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.2\";s:2:\"to\";s:6:\"3.19.3\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-28 07:06:59\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.2\";s:2:\"to\";s:6:\"3.19.3\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"085e24ab97e92779e938ae1aa2877ad4\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-02-29 07:06:57\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.3\";s:2:\"to\";s:6:\"3.19.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-29 07:06:57\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.3\";s:2:\"to\";s:6:\"3.19.4\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"33024bcdb037a27f7aa5164c082d5b0f\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-03-01 07:07:17\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-03-01 07:07:17\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"fbfc3bd282e4aab1be5e2bfc9f177e61\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-03-01 07:07:17\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-03-01 07:07:17\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"745cee7bc9a53a70ab940318bf9ae341\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-03-01 07:07:17\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-03-01 07:07:17\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"7f32e60149f7ec5be82f215daa05d5fb\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-03-01 07:07:17\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.3\";s:2:\"to\";s:6:\"3.19.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-03-01 07:07:17\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.3\";s:2:\"to\";s:6:\"3.19.4\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"6f6de5f3a98b0273bc685f160e12577d\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-03-13 01:07:06\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-03-13 01:07:06\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"03e2bb7306814984f3755389e70d7266\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-03-13 01:07:06\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-03-13 01:07:06\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"d5306580a56777ce9cec04ac57fc06df\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-03-13 01:07:06\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-03-13 01:07:06\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"be3058c9ca406dc7fab66ed8c0b24184\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-03-13 01:07:06\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.4\";s:2:\"to\";s:6:\"3.20.0\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-03-13 01:07:06\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.4\";s:2:\"to\";s:6:\"3.20.0\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"839b697019999c483d90fc87da4a414d\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-03-13 01:07:06\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.4\";s:2:\"to\";s:6:\"3.20.0\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-03-13 01:07:06\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.4\";s:2:\"to\";s:6:\"3.20.0\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"fa86154059df23c874a98344db8ad5a3\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-03-15 07:07:07\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-03-15 07:07:07\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"a60f0cf9675e1dff767332f81eb054b9\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-03-15 07:07:07\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-03-15 07:07:07\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"32e7467d2b56dc9ad65d5a0a00cedcc3\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-03-15 07:07:07\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-03-15 07:07:07\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"694b63ff9b78e2b51e9e527240338250\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-03-15 07:07:07\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.20.0\";s:2:\"to\";s:6:\"3.20.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-03-15 07:07:07\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.20.0\";s:2:\"to\";s:6:\"3.20.1\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"4e702cd03408c994b30d0f19ce4b0c99\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-03-15 07:07:07\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.20.0\";s:2:\"to\";s:6:\"3.20.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-03-15 07:07:07\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.20.0\";s:2:\"to\";s:6:\"3.20.1\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"8a3308b1bef058324fcc99aa2d9a235e\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-03-22 07:07:19\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-03-22 07:07:19\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"b1003ee1668225ca36608d16fd0cfbb7\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-03-22 07:07:19\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-03-22 07:07:19\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"0236c8b832209b736aa116f27754824f\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-03-22 07:07:19\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-03-22 07:07:19\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"e8bfd37b03a328a99ac8cecc5b7bcab3\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-03-22 07:07:19\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.20.1\";s:2:\"to\";s:6:\"3.20.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-03-22 07:07:19\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.20.1\";s:2:\"to\";s:6:\"3.20.2\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"fc0fd53244d42b3e9eabd2d3de54377f\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-03-22 07:07:19\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.20.1\";s:2:\"to\";s:6:\"3.20.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-03-22 07:07:19\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.20.1\";s:2:\"to\";s:6:\"3.20.2\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"0f832dd9e671989aea29234f1c50bcab\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-04-02 23:17:24\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.20.2\";s:2:\"to\";s:6:\"3.20.3\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-04-02 23:17:24\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.20.2\";s:2:\"to\";s:6:\"3.20.3\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"c64a57b995da78722bea4371d69538c7\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2024-04-02 23:17:29\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:24:\"Undefined index: options\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-04-02 23:17:29\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:24:\"Undefined index: options\";s:4:\"file\";s:134:\"/home/irovz794gpdq/public_html/av-advertising.com/beyondc/wp-content/plugins/elementor-pro/modules/theme-builder/widgets/site-logo.php\";s:4:\"line\";i:192;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:134:\"/home/irovz794gpdq/public_html/av-advertising.com/beyondc/wp-content/plugins/elementor-pro/modules/theme-builder/widgets/site-logo.php\";s:7:\"\0*\0line\";i:192;}s:32:\"71ad6ec2c9feb647d14bf58acb7750b2\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2025-05-28 13:34:11\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:57:\"Using ${var} in strings is deprecated, use {$var} instead\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:84;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2025-10-26 00:24:39\";i:1;s:19:\"2025-10-26 00:24:40\";i:2;s:19:\"2025-11-09 23:41:19\";i:3;s:19:\"2025-11-09 23:41:20\";i:4;s:19:\"2025-11-10 00:26:37\";i:5;s:19:\"2025-11-10 00:26:38\";i:6;s:19:\"2025-11-24 23:36:24\";i:7;s:19:\"2025-11-24 23:36:25\";i:8;s:19:\"2025-11-25 00:27:30\";i:9;s:19:\"2025-11-25 00:27:31\";i:10;s:19:\"2025-12-10 00:15:24\";i:11;s:19:\"2025-12-10 00:15:25\";i:12;s:19:\"2025-12-10 00:28:46\";i:13;s:19:\"2025-12-10 00:28:47\";i:14;s:19:\"2025-12-25 00:42:37\";i:15;s:19:\"2025-12-25 00:42:38\";i:16;s:19:\"2025-12-25 00:58:20\";i:17;s:19:\"2025-12-25 00:58:21\";i:18;s:19:\"2026-01-09 00:43:58\";i:19;s:19:\"2026-01-09 00:43:59\";i:20;s:19:\"2026-01-09 00:59:33\";i:21;s:19:\"2026-01-09 00:59:34\";i:22;s:19:\"2026-01-24 00:42:35\";i:23;s:19:\"2026-01-24 00:42:36\";i:24;s:19:\"2026-01-24 01:40:37\";i:25;s:19:\"2026-01-24 01:40:38\";i:26;s:19:\"2026-02-08 00:46:34\";i:27;s:19:\"2026-02-08 00:46:35\";i:28;s:19:\"2026-02-08 01:34:12\";i:29;s:19:\"2026-02-08 01:34:13\";i:30;s:19:\"2026-02-23 00:54:11\";i:31;s:19:\"2026-02-23 00:54:12\";i:32;s:19:\"2026-02-23 01:42:24\";i:33;s:19:\"2026-02-23 01:42:25\";i:34;s:19:\"2026-03-10 00:44:56\";i:35;s:19:\"2026-03-10 00:44:57\";i:36;s:19:\"2026-03-10 02:04:23\";i:37;s:19:\"2026-03-10 02:04:24\";i:38;s:19:\"2026-03-25 01:21:56\";i:39;s:19:\"2026-03-25 01:21:57\";i:40;s:19:\"2026-03-25 02:15:14\";i:41;s:19:\"2026-03-25 02:15:15\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:57:\"Using ${var} in strings is deprecated, use {$var} instead\";s:4:\"file\";s:113:\"/home/irovz794gpdq/public_html/av-advertising.com/beyondc/wp-content/plugins/elementor-pro/core/editor/editor.php\";s:4:\"line\";i:118;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:113:\"/home/irovz794gpdq/public_html/av-advertising.com/beyondc/wp-content/plugins/elementor-pro/core/editor/editor.php\";s:7:\"\0*\0line\";i:118;}}', 'off'),
(223, 'unlimited-elementor-inner-sections-by-boomdevs_allow_tracking', 'no', 'yes'),
(226, 'elementor_library_category_children', 'a:0:{}', 'yes'),
(229, 'dismissed-oceanwp_plugin_notice', '1', 'yes'),
(234, 'eael_setup_wizard', 'init', 'yes'),
(235, 'eael_save_settings', 'a:64:{s:9:\"post-grid\";i:1;s:13:\"post-timeline\";i:1;s:10:\"fancy-text\";i:1;s:12:\"creative-btn\";i:1;s:10:\"count-down\";i:1;s:12:\"team-members\";i:1;s:12:\"testimonials\";i:1;s:8:\"info-box\";i:1;s:8:\"flip-box\";i:1;s:14:\"call-to-action\";i:1;s:11:\"dual-header\";i:1;s:11:\"price-table\";i:1;s:12:\"twitter-feed\";i:1;s:13:\"facebook-feed\";i:1;s:19:\"advanced-data-table\";i:1;s:10:\"data-table\";i:1;s:14:\"filter-gallery\";i:1;s:15:\"image-accordion\";i:1;s:14:\"content-ticker\";i:1;s:7:\"tooltip\";i:1;s:13:\"adv-accordion\";i:1;s:8:\"adv-tabs\";i:1;s:12:\"progress-bar\";i:1;s:12:\"feature-list\";i:1;s:12:\"product-grid\";i:1;s:14:\"contact-form-7\";i:1;s:7:\"weforms\";i:1;s:10:\"ninja-form\";i:1;s:9:\"formstack\";i:1;s:12:\"gravity-form\";i:1;s:12:\"caldera-form\";i:1;s:7:\"wpforms\";i:1;s:10:\"fluentform\";i:1;s:8:\"typeform\";i:1;s:24:\"betterdocs-category-grid\";i:1;s:23:\"betterdocs-category-box\";i:1;s:22:\"betterdocs-search-form\";i:1;s:12:\"sticky-video\";i:1;s:14:\"event-calendar\";i:1;s:10:\"embedpress\";i:1;s:24:\"crowdfundly-organization\";i:1;s:24:\"crowdfundly-all-campaign\";i:1;s:27:\"crowdfundly-single-campaign\";i:1;s:12:\"woo-checkout\";i:1;s:8:\"woo-cart\";i:1;s:14:\"login-register\";i:1;s:18:\"woocommerce-review\";i:1;s:11:\"career-page\";i:1;s:19:\"woo-product-compare\";i:1;s:20:\"woo-product-carousel\";i:1;s:11:\"simple-menu\";i:1;s:19:\"woo-product-gallery\";i:1;s:18:\"interactive-circle\";i:1;s:14:\"better-payment\";i:1;s:11:\"nft-gallery\";i:1;s:16:\"business-reviews\";i:1;s:8:\"svg-draw\";i:1;s:9:\"promotion\";i:1;s:9:\"custom-js\";i:1;s:16:\"reading-progress\";i:1;s:16:\"table-of-content\";i:1;s:15:\"post-duplicator\";i:1;s:13:\"scroll-to-top\";i:1;s:12:\"wrapper-link\";i:1;}', 'yes'),
(237, 'eael_version', '5.8.9', 'yes'),
(260, 'elementor_pro_version', '3.16.2', 'yes'),
(261, 'elementor_pro_install_history', 'a:1:{s:6:\"3.16.4\";i:1695721930;}', 'yes'),
(262, 'widget_elementor-library', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(263, '_elementor_pro_installed_time', '1695721930', 'yes'),
(264, 'elementor_submissions_db_version', '5', 'yes'),
(265, 'elementor_connect_site_key', '003340366b090e4de58b227aa4a60a09', 'yes'),
(266, 'elementor_allow_tracking', 'yes', 'yes'),
(267, 'elementor_tracker_last_send', '1711436797', 'yes'),
(272, 'elementor_pro_license_key', 'ep-tCVsz2E7oPwNFbAOes891695711543UBHtSBCv1Ofr', 'yes'),
(273, '_elementor_pro_license_v2_data_fallback', 'a:2:{s:7:\"timeout\";i:1696653801;s:5:\"value\";s:141:\"{\"expires\":\"2024-09-26 06:57:33\",\"subscription_id\":13976439,\"status\":\"ACTIVE\",\"recurring\":true,\"features\":[],\"activated\":true,\"success\":true}\";}', 'no'),
(274, '_elementor_pro_license_v2_data', 'a:2:{s:7:\"timeout\";i:1696610601;s:5:\"value\";s:141:\"{\"expires\":\"2024-09-26 06:57:33\",\"subscription_id\":13976439,\"status\":\"ACTIVE\",\"recurring\":true,\"features\":[],\"activated\":true,\"success\":true}\";}', 'no'),
(275, '_elementor_pro_api_requests_lock', 'a:2:{s:16:\"get_license_data\";i:1696567400;s:11:\"get_version\";i:1747565307;}', 'yes'),
(279, 'elementor_custom_icon_sets_config', 'a:0:{}', 'yes'),
(316, 'elementor_pro_theme_builder_conditions', 'a:0:{}', 'yes'),
(317, 'site_logo', '69', 'yes'),
(339, 'elementor_clear_cache', '', 'yes'),
(340, 'elementor_reset_api_data', '', 'yes'),
(341, 'elementor_safe_mode', '', 'yes'),
(342, 'elementor_enable_inspector', '', 'yes'),
(343, 'elementor_replace_url', '', 'yes'),
(344, 'elementor_rollback', '', 'yes'),
(345, 'elementor_rollback_pro_separator', '', 'yes'),
(346, 'elementor_rollback_pro', '', 'yes'),
(347, 'elementor_beta', 'no', 'yes'),
(348, 'elementor_maintenance_mode_mode', '', 'yes'),
(349, 'elementor_maintenance_mode_exclude_mode', 'logged_in', 'yes'),
(350, 'elementor_maintenance_mode_exclude_roles', 'a:0:{}', 'yes'),
(351, 'elementor_maintenance_mode_template_id', '', 'yes'),
(362, 'bcf_custom_fonts_2_0_2_migration', '1', 'yes'),
(363, '_custom_fonts_db_version', '2.1.0', 'yes'),
(364, 'bsf_analytics_installed_time', '1696226332', 'no'),
(365, 'bcf_font_urls', 'a:1:{i:0;s:82:\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/The-Seasons-Light.ttf\";}', 'yes'),
(366, 'elementor_unfiltered_files_upload', '1', 'yes'),
(473, 'bsf_analytics_optin', 'no', 'no'),
(483, 'uaf_css_updated_timestamp', '1696591735', 'yes'),
(484, 'uaf_site_url', 'aHR0cHM6Ly9hdi1hZHZlcnRpc2luZy5jb20vYmV5b25kYw==', 'yes'),
(485, 'uaf_install_date', '2023-10-06', 'yes'),
(486, 'uaf_current_version', '6.3.04', 'yes'),
(487, 'uaf_api_key', '', 'yes'),
(488, 'uaf_server_url_type', 'default', 'yes'),
(489, 'uaf_activated_url', '', 'yes'),
(490, 'uaf_uploader_type', 'js', 'yes'),
(491, 'uaf_font_display_property', 'auto', 'yes'),
(492, 'uaf_enable_multi_lang_support', '0', 'yes'),
(493, 'uaf_disbale_editor_font_list', '0', 'yes'),
(494, 'uaf_use_absolute_font_path', '0', 'yes'),
(495, 'uaf_hide_key', 'no', 'yes'),
(498, 'elementor_fonts_manager_font_types', 'a:0:{}', 'yes'),
(499, 'elementor_fonts_manager_fonts', 'a:0:{}', 'yes'),
(533, 'elementor_elementor_updater_completed', '1', 'yes'),
(720, 'wp_attachment_pages_enabled', '1', 'yes'),
(721, 'db_upgraded', '1', 'on'),
(1446, 'elementor_controls_usage', 'a:3:{s:7:\"wp-page\";a:8:{s:8:\"template\";a:2:{s:5:\"count\";i:11;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:16:\"section_template\";a:1:{s:11:\"template_id\";i:11;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:92;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:8:{s:14:\"flex_direction\";i:53;s:13:\"content_width\";i:84;s:5:\"width\";i:22;s:20:\"flex_justify_content\";i:10;s:10:\"min_height\";i:4;s:16:\"flex_align_items\";i:9;s:11:\"boxed_width\";i:3;s:8:\"flex_gap\";i:18;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:7:{s:7:\"padding\";i:63;s:10:\"_flex_size\";i:11;s:6:\"margin\";i:17;s:8:\"position\";i:1;s:7:\"z_index\";i:1;s:11:\"css_classes\";i:1;s:16:\"_flex_align_self\";i:3;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:9;s:16:\"background_image\";i:3;s:19:\"background_position\";i:3;s:17:\"background_repeat\";i:3;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:22;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:22;s:10:\"image_size\";i:17;}}s:5:\"style\";a:2:{s:19:\"section_style_image\";a:3:{s:5:\"width\";i:21;s:6:\"height\";i:8;s:10:\"object-fit\";i:2;}s:21:\"section_style_caption\";a:2:{s:30:\"caption_typography_line_height\";i:9;s:31:\"caption_typography_word_spacing\";i:9;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:27;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:27;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:27;s:21:\"typography_typography\";i:23;s:22:\"typography_font_family\";i:23;s:20:\"typography_font_size\";i:23;s:22:\"typography_font_weight\";i:23;s:25:\"typography_text_transform\";i:19;s:5:\"align\";i:16;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:7:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:11;s:16:\"_flex_align_self\";i:6;s:10:\"_flex_size\";i:6;s:9:\"_position\";i:6;s:9:\"_offset_x\";i:6;s:9:\"_offset_y\";i:6;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:6;s:17:\"_background_color\";i:6;}}}}s:4:\"form\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:19:\"section_form_fields\";a:2:{s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;}s:15:\"section_buttons\";a:3:{s:11:\"button_size\";i:1;s:12:\"button_align\";i:1;s:11:\"button_text\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_form_style\";a:9:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;s:27:\"label_typography_typography\";i:1;s:28:\"label_typography_font_family\";i:1;s:26:\"label_typography_font_size\";i:1;s:28:\"label_typography_font_weight\";i:1;s:26:\"html_typography_typography\";i:1;s:27:\"html_typography_font_family\";i:1;s:27:\"html_typography_font_weight\";i:1;}s:19:\"section_field_style\";a:3:{s:22:\"field_background_color\";i:1;s:18:\"field_border_width\";i:1;s:19:\"field_border_radius\";i:1;}s:20:\"section_button_style\";a:9:{s:28:\"button_typography_typography\";i:1;s:29:\"button_typography_font_family\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:23:\"button_background_color\";i:1;s:32:\"previous_button_background_color\";i:1;s:20:\"button_border_radius\";i:1;s:19:\"button_text_padding\";i:1;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:6;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:6;s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:6;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:1;s:9:\"_position\";i:1;s:9:\"_offset_y\";i:1;s:9:\"_offset_x\";i:1;s:7:\"_margin\";i:1;}}}}s:8:\"nav-menu\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:10:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:25:\"menu_typography_font_size\";i:1;s:30:\"menu_typography_text_transform\";i:1;s:15:\"color_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:29:\"pointer_color_menu_item_hover\";i:1;s:22:\"color_menu_item_active\";i:1;s:13:\"pointer_width\";i:1;}}}}s:14:\"image-carousel\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:22:\"section_image_carousel\";a:6:{s:8:\"carousel\";i:2;s:14:\"thumbnail_size\";i:2;s:14:\"slides_to_show\";i:2;s:10:\"navigation\";i:1;s:13:\"image_stretch\";i:2;s:16:\"slides_to_scroll\";i:1;}s:26:\"section_additional_options\";a:1:{s:14:\"autoplay_speed\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}s:5:\"style\";a:2:{s:24:\"section_style_navigation\";a:2:{s:9:\"dots_size\";i:1;s:11:\"arrows_size\";i:1;}s:19:\"section_style_image\";a:4:{s:22:\"gallery_vertical_align\";i:1;s:13:\"image_spacing\";i:1;s:20:\"image_spacing_custom\";i:1;s:19:\"image_border_radius\";i:1;}}}}}s:9:\"container\";a:5:{s:5:\"image\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:5:\"width\";i:1;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:7;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:7;s:11:\"header_size\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:5:\"align\";i:1;s:11:\"title_color\";i:7;s:21:\"typography_typography\";i:7;s:22:\"typography_font_family\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_font_weight\";i:7;s:25:\"typography_text_transform\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:6;s:8:\"_padding\";i:6;}}}}s:12:\"social-icons\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:2:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_social_style\";a:3:{s:10:\"icon_color\";i:1;s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:8;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:14:\"flex_direction\";i:7;s:13:\"content_width\";i:5;s:5:\"width\";i:2;s:20:\"flex_justify_content\";i:1;s:16:\"flex_align_items\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:2:{s:7:\"padding\";i:2;s:10:\"_flex_size\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:11:\"_flex_order\";i:1;}}}}}s:7:\"section\";a:3:{s:5:\"image\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:16:\"_flex_align_self\";i:1;s:10:\"_flex_size\";i:1;}}}}s:8:\"nav-menu\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:9:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:30:\"menu_typography_text_transform\";i:1;s:15:\"color_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:29:\"pointer_color_menu_item_hover\";i:1;s:22:\"color_menu_item_active\";i:1;s:13:\"pointer_width\";i:1;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:3:{s:13:\"content_width\";i:2;s:14:\"flex_direction\";i:2;s:20:\"flex_justify_content\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;}}}}}}', 'no'),
(1463, '_transient_doing_cron', '1775018700.9617459774017333984375', 'yes'),
(1480, 'elementor_1_elementor_updater_batch_30d8a7ddcb104bff627162208b1d', 'a:1:{i:0;a:1:{s:8:\"callback\";a:2:{i:0;s:31:\"Elementor\\Core\\Upgrade\\Upgrades\";i:1;s:16:\"_on_each_version\";}}}', 'no'),
(1483, '_elementor_global_css', 'a:6:{s:4:\"time\";i:1712099848;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;b:0;}', 'yes'),
(2522, 'elementor_checklist', '{\"last_opened_timestamp\":-1,\"first_closed_checklist_in_editor\":false,\"is_popup_minimized\":false,\"editor_visit_count\":0,\"steps\":[]}', 'auto'),
(2524, '_transient_wp_styles_for_blocks', 'a:2:{s:4:\"hash\";s:32:\"8c7d46a72d7d4591fc1dd9485bedb304\";s:6:\"blocks\";a:5:{s:11:\"core/button\";s:0:\"\";s:14:\"core/site-logo\";s:0:\"\";s:18:\"core/post-template\";s:120:\":where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}\";s:12:\"core/columns\";s:102:\":where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}\";s:14:\"core/pullquote\";s:69:\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\";}}', 'on'),
(3044, 'WPLANG', 'en', 'yes'),
(3047, 'elementor-custom-breakpoints-files', 'a:24:{s:23:\"custom-apple-webkit.min\";a:1:{s:4:\"time\";i:1739331158;}s:19:\"custom-lightbox.min\";a:1:{s:4:\"time\";i:1739331158;}s:19:\"custom-frontend.min\";a:1:{s:4:\"time\";i:1739331158;}s:27:\"custom-widget-accordion.min\";a:1:{s:4:\"time\";i:1739331158;}s:23:\"custom-widget-alert.min\";a:1:{s:4:\"time\";i:1739331158;}s:26:\"custom-widget-icon-box.min\";a:1:{s:4:\"time\";i:1739331158;}s:27:\"custom-widget-icon-list.min\";a:1:{s:4:\"time\";i:1739331158;}s:27:\"custom-widget-image-box.min\";a:1:{s:4:\"time\";i:1739331158;}s:31:\"custom-widget-image-gallery.min\";a:1:{s:4:\"time\";i:1739331158;}s:26:\"custom-widget-progress.min\";a:1:{s:4:\"time\";i:1739331158;}s:29:\"custom-widget-star-rating.min\";a:1:{s:4:\"time\";i:1739331158;}s:22:\"custom-widget-tabs.min\";a:1:{s:4:\"time\";i:1739331158;}s:24:\"custom-widget-toggle.min\";a:1:{s:4:\"time\";i:1739331158;}s:29:\"custom-widget-nested-tabs.min\";a:1:{s:4:\"time\";i:1739331158;}s:29:\"custom-widget-link-in-bio.min\";a:1:{s:4:\"time\";i:1739331158;}s:34:\"custom-widget-link-in-bio-base.min\";a:1:{s:4:\"time\";i:1739331158;}s:34:\"custom-widget-floating-buttons.min\";a:1:{s:4:\"time\";i:1739331158;}s:36:\"custom-widget-floating-bars-base.min\";a:1:{s:4:\"time\";i:1739331158;}s:37:\"custom-widget-floating-bars-var-3.min\";a:1:{s:4:\"time\";i:1739331158;}s:38:\"custom-widget-contact-buttons-base.min\";a:1:{s:4:\"time\";i:1739331158;}s:39:\"custom-widget-contact-buttons-var-7.min\";a:1:{s:4:\"time\";i:1739331158;}s:39:\"custom-widget-contact-buttons-var-9.min\";a:1:{s:4:\"time\";i:1739331158;}s:40:\"custom-widget-contact-buttons-var-10.min\";a:1:{s:4:\"time\";i:1739331158;}s:23:\"custom-pro-frontend.min\";a:1:{s:4:\"time\";i:1739331158;}}', 'auto'),
(3227, 'elementor_landing_pages_activation', '0', 'auto'),
(3334, 'oceanwp_theme_installed_version', '4.0.7', 'auto');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(3353, 'elementor_pro_remote_info_api_data_3.16.2', 'a:2:{s:7:\"timeout\";i:1747608508;s:5:\"value\";s:241344:\"{\"stable_version\":\"3.28.4\",\"last_updated\":\"2025-05-05 11:54:40\",\"sections\":\"a:2:{s:11:\\\"description\\\";s:161:\\\"Elementor Pro adds new features to the Elementor Page Builder plugin. Control your conversions, your user engagement, your entire website, from one page builder.\\\";s:9:\\\"changelog\\\";s:225576:\\\"<h2>Elementor Pro - by Elementor.com<\\/h2>\\n<h4>3.28.4 - 2025-05-05<\\/h4>\\n<ul>\\n<li>Fix: Empty results appeared on the frontend when using the Taxonomy Filter with the \'Avoid Duplicates\' option in Loop Grid widget<\\/li>\\n<li>Fix: Errors occur when Debug mode is enabled and the Optimized Markup experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.28.3 - 2025-04-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved sidebar navigation flow on the Elementor Home screen<\\/li>\\n<\\/ul>\\n<h4>3.28.2 - 2025-03-30<\\/h4>\\n<ul>\\n<li>Fix: Default Elementor animation shown for logged-out users when using an &quot;External URL&quot; source in Lottie widget<\\/li>\\n<\\/ul>\\n<h4>3.28.1 - 2025-03-23<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Animated Headline and Form widgets<\\/li>\\n<\\/ul>\\n<h4>3.28.0 - 2025-03-17<\\/h4>\\n<ul>\\n<li>Tweak: Ensured File Upload field styles are overridden by global styles in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11651\\\">#11651<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17223\\\">#17223<\\/a>)<\\/li>\\n<li>Tweak: Updated Scroll Snap description to clarify incompatibility with animations and motion effects<\\/li>\\n<li>Tweak: Prevented special characters from being encoded in the email subject field in Form widget<\\/li>\\n<li>Tweak: Loaded module styles within the module instead of registering them in <code>plugin.php<\\/code><\\/li>\\n<li>Tweak: Updated minimum required WordPress version to 6.5<\\/li>\\n<li>Tweak: Improved keyboard accessibility for menus in Editor Top Bar<\\/li>\\n<li>Tweak: Made the edit button accessible in the Template widget<\\/li>\\n<li>Tweak: Optimized Form widget performance by caching field assets <code>using get_style_depends()<\\/code> and <code>get_script_depends()<\\/code> methods<\\/li>\\n<li>Tweak: Added Text Shadow control in Testimonial Carousel, Call to Action and Animated Headline widgets<\\/li>\\n<li>Fix: Button icon alignment breaks when Inline Font Icons feature is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16077\\\">#16077<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16511\\\">#16511<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17692\\\">#17692<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17922\\\">#17922<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19253\\\">#19253<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19370\\\">#19370<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21236\\\">#21236<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21844\\\">#21844<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28080\\\">#28080<\\/a>)<\\/li>\\n<li>Fix: Dropdown caret color did not follow menu item color when Inline Font Icons feature is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17500\\\">#17500<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18466\\\">#18466<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21664\\\">#21664<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24929\\\">#24929<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28064\\\">#28064<\\/a>)<\\/li>\\n<li>Fix: Page doesn\'t scroll up when a coupon error notice appears in Checkout widget<\\/li>\\n<\\/ul>\\n<h4>3.27.7 - 2025-03-13<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Lottie widget<\\/li>\\n<\\/ul>\\n<h4>3.27.6 - 2025-03-10<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Template Condition<\\/li>\\n<\\/ul>\\n<h4>3.27.5 - 2025-03-03<\\/h4>\\n<ul>\\n<li>Fix: The <code>wp_trigger_error<\\/code> function causes the site to crash instead of triggering a warning when used with ACF text<\\/li>\\n<\\/ul>\\n<h4>3.27.4 - 2025-02-16<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Screenshots module<\\/li>\\n<li>Security Fix: Improved code security enforcement in Query control<\\/li>\\n<li>Fix: ACF <code>true_false<\\/code> field causing a fatal error when used as a dynamic tag with third-party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/30170\\\">#30170<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.27.3 - 2025-02-06<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Stripe Button widget<\\/li>\\n<\\/ul>\\n<h4>3.27.2 - 2025-02-03<\\/h4>\\n<ul>\\n<li>Fix: Value type configuration issue causing errors when using ACF<\\/li>\\n<li>Fix: Hide content on responsive breakpoint option is not working on WordPress Menu widget when Optimized Markup experiment is activated<\\/li>\\n<\\/ul>\\n<h4>3.27.1 - 2025-01-27<\\/h4>\\n<ul>\\n<li>Tweak: Increased the number of items allowed in Dynamic Tags options in Display Conditions for Elements<\\/li>\\n<li>Security Fix: Improved code security enforcement in Global widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Lottie widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Admin settings<\\/li>\\n<li>Fix: Accessible navigation in popups caused unintended scrolling of the page when triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29175\\\">#29175<\\/a>)<\\/li>\\n<li>Fix: Empty custom fields are missing in the Dynamic Tags options in Display Conditions for Elements<\\/li>\\n<\\/ul>\\n<h4>3.27.0 - 2025-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Removed the <code>elementor-widget-container<\\/code> div from the Menu, Loop, Table of Contents, Form, and Hotspot widgets as part of the Optimized Markup experiment to improve HTML structure<\\/li>\\n<li>Tweak: Reduced DOM size by optimizing the submit button markup in Search widget<\\/li>\\n<li>Tweak: Moved style loading to the head instead of the footer to improve CLS<\\/li>\\n<li>Tweak: Enabled conditional loading of Swiper.js based on widget dependencies to reduce unnecessary assets and improve page load times<\\/li>\\n<li>Tweak: Standardized navigation elements like arrows and bullets across all carousel and slider widgets for improved accessibility<\\/li>\\n<li>Tweak: Improved accessibility when the submit button has only an icon and no text in Search widget<\\/li>\\n<li>Tweak: Removed <code>load_plugin_textdomain()<\\/code> function from Elementor Pro<\\/li>\\n<\\/ul>\\n<h4>3.26.3 - 2025-01-07<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Search widget<\\/li>\\n<li>Fix: Height issues cause slideshow thumbnails to display incorrectly in Media Carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29663\\\">#29663<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.26.2 - 2024-12-22<\\/h4>\\n<ul>\\n<li>Fix: Menu items are not clickable in various scenarios in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29191\\\">#29191<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.26.1 - 2024-12-17<\\/h4>\\n<ul>\\n<li>Fix: Restore deprecated <code>Plugin::enqueue_styles()<\\/code> function to avoid errors with 3rd party plugins<\\/li>\\n<\\/ul>\\n<h4>3.26.0 - 2024-12-16<\\/h4>\\n<ul>\\n<li>New: Introducing dynamic content support for Off-canvas in Loop Grid widget templates - enabling seamless display of additional content dynamically (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29049\\\">#29049<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28935\\\">#28935<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7106\\\">#7106<\\/a>)<\\/li>\\n<li>New: AdBlock Detection trigger for Popups - display targeted popups for visitors using ad blockers<\\/li>\\n<li>New: Added Reload Page link action for Dynamic Tags<\\/li>\\n<li>Tweak: Added &quot;Space Between Dots&quot; control to Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2526\\\">#2526<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3277\\\">#3277<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21697\\\">#21697<\\/a>)<\\/li>\\n<li>Tweak: Replaced hidden <code>elementor-screen-only<\\/code> div with <code>aria-label<\\/code> attributes<\\/li>\\n<li>Tweak: Removed <code>elementor-widget-container<\\/code> div from Elementor widgets as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Optimize popup styling by loading it only when necessary<\\/li>\\n<li>Tweak: Updated Gap between slides control to support only PX units in Carousel widget<\\/li>\\n<li>Tweak: Removed the dependency between the Tabs handler and the Menu handler<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> in Carousel widgets<\\/li>\\n<li>Tweak: Added <code>aria-roledescription=carousel<\\/code> to carousel wrapper<\\/li>\\n<li>Tweak: Added <code>aria-roledescription=slide<\\/code> to slide wrapper<\\/li>\\n<li>Tweak: Optimized carousel widgets markup as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Updated minimum required Safari version to 15.5<\\/li>\\n<li>Tweak: Facebook widgets are no longer supported on mobile due to Facebook functionality changes<\\/li>\\n<li>Fix: Motion Effects sticky feature is not working when Scroll Snap is enabled<\\/li>\\n<li>Fix: Custom Image Resolution option is not working in Gallery widget<\\/li>\\n<li>Fix: \'Reading Settings\' unexpectedly reduces the number of posts displayed when using the Archive with Pagination setting<\\/li>\\n<li>Fix: Step Form does not scroll to the top when the first field is not an input field in Form widget<\\/li>\\n<li>Fix: Display Condition feature is available without an active Elementor license in Floating Elements<\\/li>\\n<li>Fix: Background options of Flip Box in Loop Grid widget are not working when images are added using ACF Dynamic Tags<\\/li>\\n<li>Fix: Dropdown icon in the Select field of the Form widget is cut off when the Inline Font Icons feature is activated<\\/li>\\n<li>Fix: Incompatibility between Form widget and WPML when using Nested Elements<\\/li>\\n<li>Fix: Performance issues when changing the title name in the Menu widget<\\/li>\\n<li>Fix: Warnings appear when Element Caching is set to Inactive in Carousel widgets<\\/li>\\n<li>Fix: Swiper styling missing from Lightbox inside Gallery widgets<\\/li>\\n<\\/ul>\\n<h4>3.25.5 - 2024-12-10<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Fix: Accessible navigation in popups caused unintended scrolling of the page when triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29175\\\">#29175<\\/a>)<\\/li>\\n<li>Fix: Popup overlay shown for non-logged users even when disabled<\\/li>\\n<\\/ul>\\n<h4>3.25.4 - 2024-11-20<\\/h4>\\n<ul>\\n<li>Tweak: Improved Global Widget loading method to enhance performance<\\/li>\\n<\\/ul>\\n<h4>3.25.3 - 2024-11-13<\\/h4>\\n<ul>\\n<li>Fix: Nested Elements are activated even when the Container experiment is inactive<\\/li>\\n<\\/ul>\\n<h4>3.25.2 - 2024-11-03<\\/h4>\\n<ul>\\n<li>Fix: Styling issues affecting popup layout when using a Dynamic Tag to open the popup<\\/li>\\n<li>Fix: Image captions are not displaying for non-logged-in users in Media Carousel widget<\\/li>\\n<li>Fix: Custom Add to Cart widget with Quantity enabled causes critical error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29159\\\">#29159<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.25.1 - 2024-10-31<\\/h4>\\n<ul>\\n<li>Fix: Multiple Custom Add to Cart widgets on the same page are adding the same product<\\/li>\\n<\\/ul>\\n<h4>3.25.0 - 2024-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added pagination functionality to the Live Results in Search widget<\\/li>\\n<li>Tweak: Added Anchor Offset control to allow precise positioning when scrolling to anchor links on the page<\\/li>\\n<li>Tweak: Load motion effects styles only when they are in use<\\/li>\\n<li>Tweak: Load sticky styles only when they are in use<\\/li>\\n<li>Tweak: Load popup styles only when they are in use<\\/li>\\n<li>Tweak: Load theme builder styles only when they are in use<\\/li>\\n<li>Tweak: Load transition styles for Call to Action and Gallery widgets only when they are in use<\\/li>\\n<li>Tweak: Load styles for Form widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for WooCommerce widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Theme Elements widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Carousel widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Pricing widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Floating Elements separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Link in Bio widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load minified CSS in the Loop Builder\'s Call to Action button in the Editor<\\/li>\\n<li>Tweak: Removed &quot;Payments&quot; module styles<\\/li>\\n<li>Tweak: Removed <code>elementor-button-wrapper<\\/code> div from Payapl widget as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Removed <code>elementor-button-wrapper<\\/code> div from Stripe widget as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Merged &quot;Form Submissions&quot; feature into the version and moved it to the Advanced tab<\\/li>\\n<li>Tweak: Merged &quot;Display Conditions&quot; into the version<\\/li>\\n<li>Fix: Missing translation string for the empty message in the Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27580\\\">#27580<\\/a>)<\\/li>\\n<li>Fix: Local Storage and Session Storage were being used even when popups were not in use (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7151\\\">#7151<\\/a>)<\\/li>\\n<li>Fix: Masonry layout is not working when pagination is set to &quot;Load More&quot; or &quot;Infinite Scroll&quot; in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23684\\\">#23684<\\/a>)<\\/li>\\n<li>Fix: Extra gap between widgets on the frontend when using Off-canvas widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27706\\\">#27706<\\/a>)<\\/li>\\n<li>Fix: Pagination and custom queries did not work when the Posts Widget was saved as a Global Widget or used via shortcode<\\/li>\\n<li>Fix: Lightbox videos are missing controls and displayed at the wrong size in Media Carousel widget<\\/li>\\n<li>Fix: Pagination options with Individual Pagination not working as expected in Posts and Loop Grid widgets<\\/li>\\n<li>Fix: Justified or Masonry layouts for the Pro Gallery would not display images on the frontend when inserted via nested tabs<\\/li>\\n<li>Fix: Error issue in the Loop Grid widget when used in theme parts with the Taxonomy Filter<\\/li>\\n<li>Fix: Removed the focus ring after clicking to open the Off Canvas inside the Editor<\\/li>\\n<li>Fix: Background gradient colors from the dynamic color tag values are not rendering on the frontend<\\/li>\\n<li>Fix: Excessive database requests generated by the Loop Grid widget<\\/li>\\n<li>Fix: Colors from Dynamic Tags were not rendered on the frontend<\\/li>\\n<li>Fix: Display issue in the Menu widget caused by the \'Native Intersection Observer API<\\/li>\\n<li>Fix: Dropdown area not working in certain scenarios in Menu widget<\\/li>\\n<li>Fix: Content Width control inside the Mega Menu is displaying an empty value<\\/li>\\n<\\/ul>\\n<h4>3.24.4 - 2024-10-09<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Media Carousel widget<\\/li>\\n<\\/ul>\\n<h4>3.24.3 - 2024-10-01<\\/h4>\\n<ul>\\n<li>Fix: Floating Elements template not loading when Single Page template is set with All Singular condition<\\/li>\\n<li>Fix: Form field styles not loading properly in various scenarios<\\/li>\\n<\\/ul>\\n<h4>3.24.2 - 2024-09-18<\\/h4>\\n<ul>\\n<li>Fix: Icons not displaying when Inline SVG Icons experiment is active in Link In Bio widgets and Floating Elements<\\/li>\\n<\\/ul>\\n<h4>3.24.1 - 2024-09-12<\\/h4>\\n<ul>\\n<li>Fix: Widget styles not loading correctly on front causing alignment inconsistencies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28676\\\">#28676<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.24.0 - 2024-09-10<\\/h4>\\n<ul>\\n<li>New: Introducing support for Variable Fonts - allowing for more dynamic and flexible text styling (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6703\\\">#6703<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11333\\\">#11333<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19277\\\">#19277<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25485\\\">#25485<\\/a>)<\\/li>\\n<li>Tweak: Added \'Structure\' indication for widgets with Display Conditions applied (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28027\\\">#28027<\\/a>)<\\/li>\\n<li>Tweak: Added a new option for setting the live search results width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28280\\\">#28280<\\/a>)<\\/li>\\n<li>Tweak: Improved Honeypot field functionality in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28480\\\">#28480<\\/a>)<\\/li>\\n<li>Tweak: Added options to \'Copy\', \'Paste\', and \'Clear\' Display Conditions in Context Menu<\\/li>\\n<li>Tweak: Improved performance of the Menu widget when using Dynamic Tags in the URL field<\\/li>\\n<li>Tweak: Improved performance when using Dynamic Tags in Nested Elements<\\/li>\\n<li>Tweak: Added the option for users to disable Akismet for specific Elementor forms<\\/li>\\n<li>Tweak: Adjusted URL structure when presenting the Search Archive page in Search widget<\\/li>\\n<li>Tweak: Added the \'Create Template\' button in Search widget<\\/li>\\n<li>Tweak: Added an option to enable the \'Loader\' animation while live results are loading in Search widget<\\/li>\\n<li>Tweak: Load share buttons compatibility styles only when they are in use<\\/li>\\n<li>Tweak: Load dialog styles only when they are in use<\\/li>\\n<li>Tweak: Load global widget styles only during Editor preview<\\/li>\\n<li>Tweak: Conditionally load widget styles only when the widgets are used<\\/li>\\n<li>Tweak: Load styles for CTA hover animations only when they are in use<\\/li>\\n<li>Tweak: Load notes styles only when the WordPress Toolbar is displayed<\\/li>\\n<li>Tweak: Split <code>animations.min.css<\\/code> into multiple CSS files and load them conditionally<\\/li>\\n<li>Tweak: Promoted Display Conditions feature to Stable status<\\/li>\\n<li>Tweak: Merged Taxonomy Filter feature into the version<\\/li>\\n<li>Tweak: Merged Search feature into the version<\\/li>\\n<li>Tweak: Added a note to \'Current Query\' explaining the impact of WordPress settings on pagination within Archives<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for the Off-Canvas widget<\\/li>\\n<li>Fix: Manual Selection option is not excluding sticky posts in Posts and Loop Grid widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18689\\\">#18689<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23331\\\">#23331<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28179\\\">#28179<\\/a>)<\\/li>\\n<li>Fix: Template ID does not change according to the imported Loop Item (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21404\\\">#21404<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22202\\\">#22202<\\/a>)<\\/li>\\n<li>Fix: \'Editing Mode\' for the Off-canvas was not functioning correctly in certain scenarios<\\/li>\\n<li>Fix: Added definition to <code>clear_custom_image_sizes<\\/code> hook to prevent edge case issues<\\/li>\\n<li>Fix: Flickering issue with search result buttons when closing results using the keyboard escape key in Search widget<\\/li>\\n<li>Fix: Theme Style settings for buttons were overriding the text styling in Search widget<\\/li>\\n<li>Fix: Nesting menu inside another menu causes functionality issues in Menu widget<\\/li>\\n<li>Fix: Error when using array as custom fields value in Dynamic Tags<\\/li>\\n<\\/ul>\\n<h4>3.23.3 - 2024-08-05<\\/h4>\\n<ul>\\n<li>Fix: Dropdown area not working in certain scenarios in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28194\\\">#28194<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.23.2 - 2024-07-29<\\/h4>\\n<ul>\\n<li>Fix: Horizontal scroll bar appearing on the page when using Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28087\\\">#28087<\\/a>)<\\/li>\\n<li>Fix: Dropdown area disappearing in certain scenarios in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.23.1 - 2024-07-23<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in link URL<\\/li>\\n<\\/ul>\\n<h4>3.23.0 - 2024-07-15<\\/h4>\\n<ul>\\n<li>New: Search Widget with Live Results - Display live search results as visitors type into the search box, enhancing user experience and engagement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27664\\\">#27664<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24931\\\">#24931<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21459\\\">#21459<\\/a>)<\\/li>\\n<li>Tweak: Renamed <code>width<\\/code> to <code>Min width<\\/code> and added <code>Max width<\\/code> control to Hotspot tooltips (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18930\\\">#18930<\\/a>)<\\/li>\\n<li>Tweak: Applied a logical DOM order to the Mega Menu widget to improve accessibility<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for WordPress Menu widget<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for Menu widget<\\/li>\\n<li>Tweak: Added a bottom option to the Image Position control in Call to Action widget<\\/li>\\n<li>Fix: Missing version string in included CSS query string when Improved CSS Loading is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21879\\\">#21879<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23821\\\">#23821<\\/a>)<\\/li>\\n<li>Fix: Form submission icon message does not display correctly when Inline Font Icons feature is activated<\\/li>\\n<li>Fix: Save and Close button position issues in the conditions screen in Theme Builder.<\\/li>\\n<li>Fix: Focus appears on the first element when using the mouse to open Off-Canvas <\\/li>\\n<li>Fix: Links to Elementor Settings are broken in various locations<\\/li>\\n<li>Fix: Conditions field not showing all relevant conditions in Theme Builder<\\/li>\\n<li>Fix: Off-Canvas flickering in sticky containers with exit animations triggered by sticky effects<\\/li>\\n<\\/ul>\\n<h4>3.22.1 - 2024-06-24<\\/h4>\\n<ul>\\n<li>Fix: Styling of Global widgets not loading when Element Caching experiment is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27704\\\">#27704<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.22.0 - 2024-06-16<\\/h4>\\n<ul>\\n<li>New: Introducing Off-Canvas widget - create engaging and creative layers triggered by a link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6225\\\">#6225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21769\\\">#21769<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25770\\\">#25770<\\/a>)<\\/li>\\n<li>Tweak: Added option to remove \'User IP\' and \'User Agent\' from the form submissions metadata (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14285\\\">#14285<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>waypoints.js<\\/code> library with the native Intersection Observer API<\\/li>\\n<li>Tweak: Extended Alignment and Position capabilities in Form widget<\\/li>\\n<li>Tweak: Moved icon View control to style tab in Flip Box widget<\\/li>\\n<li>Tweak: Moved icon View control to style tab in Call to Action widget<\\/li>\\n<li>Tweak: Optimized Form widget to eliminate unnecessary markup when the button icon is empty<\\/li>\\n<li>Tweak: Optimized Posts widget to eliminate unnecessary markup when Load More button text is empty<\\/li>\\n<li>Tweak: Remove <code>placeholder<\\/code> arguments from URL controls<\\/li>\\n<li>Tweak: Implemented CSS logical properties to Icon Position in Form, Posts and Menu Cart widgets<\\/li>\\n<li>Tweak: Activated Display Conditions feature for existing sites<\\/li>\\n<li>Tweak: Activated Taxonomy Filter feature for existing sites<\\/li>\\n<li>Tweak: Added functionality to delay the running of the ready triggers on inner elements<\\/li>\\n<li>Fix: Icons are now part of the link in the Menu Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24298\\\">#24298<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25112\\\">#25112<\\/a>)<\\/li>\\n<li>Fix: <code>all: unset<\\/code> assigned to buttons cause focus issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24322\\\">#24322<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25448\\\">#25448<\\/a>)<\\/li>\\n<li>Fix: Menu cart SVG icon disappears on front when Optimized Control Loading experiment is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27342\\\">#27342<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro auto-updates are not working on multisite networks (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12615\\\">#12615<\\/a>)<\\/li>\\n<li>Fix: PHP error appears in the editor when using Loop Grid in an archive template<\\/li>\\n<li>Fix: UI glitch on Icon Position control in Paypal and Stripe Buttons widgets<\\/li>\\n<li>Fix: Icon Position control RTL issue in Hotspot widget<\\/li>\\n<li>Fix: Manual Selection &quot;Include By&quot; Query doesn\'t work with product categories<\\/li>\\n<\\/ul>\\n<h4>3.21.3 - 2024-05-20<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Loop Grid widget<\\/li>\\n<li>Fix: License expired affects the Display Conditions functionality in the front end<\\/li>\\n<\\/ul>\\n<h4>3.21.2 - 2024-04-30<\\/h4>\\n<ul>\\n<li>Fix: Special characters are not displayed correctly when using the Excerpt widget in Loop template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25860\\\">#25860<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.21.1 - 2024-04-24<\\/h4>\\n<ul>\\n<li>Fix: Excerpt Length setting doesn\'t function correctly for languages with non-English characters in Post Excerpt widget<\\/li>\\n<\\/ul>\\n<h4>3.21.0 - 2024-04-15<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Taxonomy Query - Enabling the display of post and product categories and tags within Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21372\\\">#21372<\\/a>)<\\/li>\\n<li>Tweak: Optimized Hotspot widget to prevent rendering when no image is provided<\\/li>\\n<li>Tweak: Optimized Blockquote widget to eliminate unnecessary markup when devoid of content<\\/li>\\n<li>Tweak: Optimized Template widget to eliminate unnecessary markup when no template is selected<\\/li>\\n<li>Tweak: Optimized Code Highlight widget to eliminate unnecessary markup when there is no content<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Portfolio widget<\\/li>\\n<li>Tweak: Implemented accessibility improvements of Author Avatar image alt text in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25440\\\">#25440<\\/a>)<\\/li>\\n<li>Tweak: Notes feature merged to version<\\/li>\\n<li>Tweak: Implemented accessibility improvements of Profile Picture alt text in Author widget<\\/li>\\n<li>Fix: Display issue on hover state in WooCommerce Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.20.3 - 2024-04-10<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issue between the My Account widget and other third-party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20986\\\">#20986<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.20.2 - 2024-03-26<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Media Carousel widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Post Navigation widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Gallery widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.20.1 - 2024-03-20<\\/h4>\\n<ul>\\n<li>Fix: Strengthened code integrity in deprecated Woo Single Element widget<\\/li>\\n<li>Fix: PHP error notice appears when using Loop Grid with the Taxonomy Filter widgets<\\/li>\\n<\\/ul>\\n<h4>3.20.0 - 2024-03-11<\\/h4>\\n<ul>\\n<li>Tweak: Implemented OR logic in the Display Conditions feature<\\/li>\\n<li>Tweak: Added X and Threads social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25299\\\">#25299<\\/a>)<\\/li>\\n<li>Tweak: Added Archive Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Alt dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Caption dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Bio dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Email dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Website dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Page Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Post Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Comments Number rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Archive Author rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added support for WordPress Custom Fields in Display Conditions feature<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23875\\\">#23875<\\/a>)<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Login widget<\\/li>\\n<li>Tweak: Added additional style controls in the Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration option in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21295\\\">#21295<\\/a>)<\\/li>\\n<li>Tweak: Added Transition Duration to button in Flip Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Author Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to List in Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Login widget<\\/li>\\n<li>Tweak: Added Transition Duration in Post Navigation widget<\\/li>\\n<li>Tweak: Added Transition Duration Show More in Video Playlist widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Form widget<\\/li>\\n<li>Tweak: Removed separator-none argument from all Editor controls<\\/li>\\n<li>Tweak: Add <code>&lt;time&gt;<\\/code> wrapper for Date and Time items in Post Info widget<\\/li>\\n<li>Tweak: Page Transitions feature merged to version<\\/li>\\n<li>Tweak: Scroll Snap feature merged to version<\\/li>\\n<li>Tweak: Promoted Display Conditions feature to Beta status and activated for new sites<\\/li>\\n<li>Tweak: Promoted Taxonomy Filter feature to beta status and activated for new sites<\\/li>\\n<li>Fix: Page Transitions feature and Load Font Awesome 4 Support cause a console error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18885\\\">#18885<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19334\\\">#19334<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21082\\\">#21082<\\/a>)<\\/li>\\n<li>Fix: Added better output escaping in Taxonomy Filter widget<\\/li>\\n<\\/ul>\\n<h4>3.19.3 - 2024-02-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved Loop CSS loading structure in Loop Grid item<\\/li>\\n<li>Security Fix: Addressed security weaknesses in Dynamic Tags<\\/li>\\n<\\/ul>\\n<h4>3.19.2 - 2024-02-07<\\/h4>\\n<ul>\\n<li>Fix: Export data inconsistencies when using form actions in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.19.1 - 2024-02-05<\\/h4>\\n<ul>\\n<li>Fix: Enqueuing non-existing Loop Template CSS file in Loop Item template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24959\\\">#24959<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>3.19.0 - 2024-01-29<\\/h4>\\n<ul>\\n<li>New: Introducing Display Conditions for Elements - allowing users to customize content visibility based on specified criteria (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4246\\\">#4246<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21152\\\">#21152<\\/a>)<\\/li>\\n<li>New: Implemented Akismet Integration for enhanced spam protection and security in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11401\\\">#11401<\\/a>)<\\/li>\\n<li>New: Introducing Permissions functionality to Element Manager - providing users with enhanced control over access and management capabilities<\\/li>\\n<li>Tweak: Added styling option for dropdown indicator in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21907\\\">#21907<\\/a>)<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Implemented CSS logical properties in WordPress Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Reviews widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Countdown widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor Editor<\\/li>\\n<li>Tweak: Updated <code>jquery.smartmenus.js<\\/code> version from 1.1.1 to 1.2.0<\\/li>\\n<li>Fix: Dynamic Background Image does not load on the first Loop Item in a Loop Grid (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21489\\\">#21489<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22368\\\">#22368<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23085\\\">#23085<\\/a>)<\\/li>\\n<li>Fix: History panel deprecation notices in console log<\\/li>\\n<li>Fix: Second Pro rollback installed the latest version instead of the specifically selected older version<\\/li>\\n<li>Fix: Incorrect position of the dropdown content when applying entrance animation in Menu Widget<\\/li>\\n<li>Fix: UX issues when using in-place editing in Menu widget<\\/li>\\n<li>Fix: Pagination with page reload is not working when used with the Taxonomy filter and Loop Grid widget in Archive template<\\/li>\\n<\\/ul>\\n<h4>3.18.2 - 2023-12-20<\\/h4>\\n<ul>\\n<li>Fix: Modified controls sanitization to enforce better security policies in Price List widget<\\/li>\\n<li>Fix: Error messages related to loop filter appear on front when using PHP 8.X and <code>WP_DEBUG<\\/code> is true<\\/li>\\n<\\/ul>\\n<h4>3.18.1 - 2023-12-06<\\/h4>\\n<ul>\\n<li>Fix: No results appeared when reloading the page with deep link and de-selecting terms in Taxonomy Filter widget<\\/li>\\n<li>Fix: No results appeared when filtering the Uncategorized category in Filter Taxonomy widget<\\/li>\\n<li>Fix: Notes still available when the Notes feature is deactivated<\\/li>\\n<\\/ul>\\n<h4>3.18.0 - 2023-12-04<\\/h4>\\n<ul>\\n<li>Tweak: Added the ability to upload files as attachments to emails in the File Upload field in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4868\\\">#4868<\\/a>)<\\/li>\\n<li>Tweak: Introduced the capability to design and edit the empty state in the Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24261\\\">#24261<\\/a>)<\\/li>\\n<li>Tweak: Implemented the option to close the menu content area with a click anywhere on the screen in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22686\\\">#22686<\\/a>)<\\/li>\\n<li>Tweak: Improve scrolling behavior inside the content area when there is not enough space in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22712\\\">#22712<\\/a>)<\\/li>\\n<li>Tweak: Expanded breakpoint options in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22488\\\">#22488<\\/a>)<\\/li>\\n<li>Tweak: Added Logical Combination control in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added additional units to Horizontal and Vertical padding for Dropdown in WordPress Menu widget<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in Loop Carousel and Carousel widgets<\\/li>\\n<li>Tweak: Added various HTML Tag controls in Video Playlist widget<\\/li>\\n<li>Tweak: Added responsive control to navigation size in Slides, Reviews, Media Carousel and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Search Form widget<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added Multiple Selection control in Taxonomy Filter widget<\\/li>\\n<li>Fix: Deprecated notice when using ${var} in strings instead of {$var} with PHP 8.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23927\\\">#23927<\\/a>)<\\/li>\\n<li>Fix: Dropdown indicator position issue in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23947\\\">#23947<\\/a>)<\\/li>\\n<li>Fix: Dynamic Tags are not available when choosing \'self-hosted\' source in Video widget<\\/li>\\n<li>Fix: Telephone field placeholder is aligned to the left in RTL websites in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.17.1 - 2023-11-01<\\/h4>\\n<ul>\\n<li>Fix: Modified controls sanitization to enforce better security policies in Code Highlight, Form, Lottie, Price List, and Video Playlist widgets<\\/li>\\n<\\/ul>\\n<h4>3.17.0 - 2023-10-25<\\/h4>\\n<ul>\\n<li>Tweak: Added AJAX pagination option or seamless page navigation between content in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>)<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Post widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Loop Grid widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Added a None option to the breakpoint options in Menu widget<\\/li>\\n<li>Tweak: Added a horizontal scrolling option in Menu widget<\\/li>\\n<li>Tweak: Upgraded minimum required PHP version to 7.3<\\/li>\\n<li>Tweak: Improved accessibility when minimize button is disabled in Table of Content widget<\\/li>\\n<li>Fix: Table of Content widget without icons displays <code>undefined<\\/code> error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17523\\\">#17523<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17768\\\">#17768<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18463\\\">#18463<\\/a>)<\\/li>\\n<li>Fix: Hover behavior issues on menu items in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23430\\\">#23430<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22431\\\">#22431<\\/a>)<\\/li>\\n<li>Fix: Links inside Loop Carousel are not working on initial load in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23705\\\">#23705<\\/a>)<\\/li>\\n<li>Fix: Popups accessible navigation adds outlines to the wrong first focusable element<\\/li>\\n<li>Fix: Dropdown area aligned to the left side of the screen if contains Tabs widget in Menu widget<\\/li>\\n<li>Fix: Content horizontal position not aligning correctly when used with carousel widgets in Menu widget<\\/li>\\n<li>Fix: Accessibility errors in PageSpeed Insights in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.16.2 - 2023-09-20<\\/h4>\\n<ul>\\n<li>Fix: Fit to Content dropdown position calculation is incorrect in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23808\\\">#23808<\\/a>)<\\/li>\\n<li>Fix: Reverted hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23804\\\">#23804<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.16.1 - 2023-09-14<\\/h4>\\n<ul>\\n<li>Fix: Dynamic tag for ACF image field is not working as expected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23757\\\">#23757<\\/a>)<\\/li>\\n<li>Fix: Sticky functionality affects padding values in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23758\\\">#23758<\\/a>)<\\/li>\\n<li>Fix: HTML list issues for padding and margin in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.16.0 - 2023-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23607\\\">#23607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22554\\\">#22554<\\/a>)<\\/li>\\n<li>Fix: \'Fallback: Recent Posts\' option malfunctions in the Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21436\\\">#21436<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23259\\\">#23259<\\/a>)<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22056\\\">#22056<\\/a>)<\\/li>\\n<li>Tweak: Used appropriate image <code>alt<\\/code> in Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17680\\\">#17680<\\/a>)<\\/li>\\n<li>Tweak: Optimized Scroll Snap functionality when using Container widget<\\/li>\\n<li>Tweak: Enhanced Elementor Role Manager functionality when using Containers<\\/li>\\n<li>Tweak: Added Notes feature to the Editor Top Bar<\\/li>\\n<li>Tweak: Replace CSS <code>float<\\/code> with other layouts in the Editor<\\/li>\\n<li>Tweak: Upgraded HTML Structure for the Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Carousel and Menu widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to a link in Posts widget<\\/li>\\n<li>Tweak: Loop Builder feature merged to version<\\/li>\\n<li>Fix: Addressed inconsistency in hover effect durations between icon, dropdown indicator colors, and text colors in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22376\\\">#22376<\\/a>)<\\/li>\\n<li>Fix: Slides break if the parent container is set to HTML A tag in Loop Carousel and Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22678\\\">#22678<\\/a>)<\\/li>\\n<li>Fix: The icon size setting is not affecting uploaded SVG icons in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22372\\\">#22372<\\/a>)<\\/li>\\n<li>Fix: Taxonomy filter does not work with slug in foreign characters (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23315\\\">#23315<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Dynamic Tags<\\/li>\\n<li>Fix: Sticky container incorrectly adjusts its width when transitioning from a smaller breakpoint to a larger one within the Editor<\\/li>\\n<\\/ul>\\n<h4>3.15.1 - 2023-08-09<\\/h4>\\n<ul>\\n<li>Fix: Improved code security enforcement in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.15.0 - 2023-07-31<\\/h4>\\n<ul>\\n<li>New: Introducing Taxonomy Filter widget - Empower visitors to seamlessly filter listings in Loop Grids based on taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3140\\\">#3140<\\/a>)<\\/li>\\n<li>Tweak: Added an &quot;Offset Sides&quot; functionality in Carousel and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21114\\\">#21114<\\/a>)<\\/li>\\n<li>Tweak: Modified the size of the Publish button in the Editor Top Bar feature (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22472\\\">#22472<\\/a>)<\\/li>\\n<li>Tweak: Improved Ajax permissions functionality for better security enforcement<\\/li>\\n<li>Tweak: Added option for pagination custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added option for navigation custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added additional styling options for navigation in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added labels to shortcode column in WordPress admin<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in Menu widget<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in My Account widget<\\/li>\\n<li>Tweak: Improved panel UI in Video Playlist widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor Editor<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Price List widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Slides widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Flip Box widget<\\/li>\\n<li>Tweak: Added &quot;Description HTML Tag&quot; in Call To Action widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Share Buttons widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Fix: WooCommerce Status page failed to recognize Elementor WooCommerce widgets<\\/li>\\n<li>Fix: Pagination does not work inside single templates when using Posts and Loop Grid widgets<\\/li>\\n<li>Fix: Incorrect saving of WooCommerce page settings in Elementor site settings under certain scenarios<\\/li>\\n<\\/ul>\\n<h4>3.14.1 - 2023-06-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved navigation on touch devices in Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22827\\\">#22827<\\/a>)<\\/li>\\n<li>Fix: Missing navigation arrows on lightbox in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22870\\\">#22870<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.14.0 - 2023-06-19<\\/h4>\\n<ul>\\n<li>New: Introducing Carousel widget - Infinite design possibilities, and nesting capabilities (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2587\\\">#2587<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>Tweak: Added Static Item Position functionality to Alternate template in Loop Grid widget<\\/li>\\n<li>Tweak: Added visual indication of Page Parts<\\/li>\\n<li>Tweak: Added dividers option between menu items in Menu widget<\\/li>\\n<li>Tweak: Changed the HTML structure of Pagination and Navigation in Loop Carousel and Nested Carousel widgets<\\/li>\\n<li>Tweak: Added shop page in WooCommerce Pages section in Site Settings<\\/li>\\n<li>Tweak: Added Text Shadow, Box Shadow and Padding control to button in Call to Action widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Video Playlist widget<\\/li>\\n<li>Tweak: Added <code>alt<\\/code> attribute to images in Video Playlist widget<\\/li>\\n<li>Tweak: Replaced select control with choose control for Flip Direction control in Flip Box widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Use <code>media_types<\\/code> array in Media controls<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11193\\\">#11193<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19871\\\">#19871<\\/a>)<\\/li>\\n<li>Fix: Responsive settings for templates don\'t work as expected when Additional Custom Breakpoints feature is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16819\\\">#16819<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19394\\\">#19394<\\/a>)<\\/li>\\n<li>Fix: Inner containers are not presented as expected in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21813\\\">#21813<\\/a>)<\\/li>\\n<li>Fix: Popup width does not support percentages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22413\\\">#22413<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x throws errors when using WooCommerce Ajax response (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22199\\\">#22199<\\/a>)<\\/li>\\n<li>Fix: Mini cart template appears as empty in various scenarios in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22789\\\">#22789<\\/a>)<\\/li>\\n<li>Fix: Order by Price doesn\'t work for the Latest products or Manual Selection in Products widget<\\/li>\\n<li>Fix: Dropdown indicator icon is not vertically aligned to the text when using icon in Menu Widget<\\/li>\\n<li>Fix: Mixed content warning in the console for Video Playlist widget<\\/li>\\n<li>Fix: Preview settings are not presented as expected after first save in Loop Template<\\/li>\\n<li>Fix: Not-crawlable link error in Video Playlist widget<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Logo widget<\\/li>\\n<li>Fix: Focus state issue on page load when using Table of Content widget<\\/li>\\n<\\/ul>\\n<h4>3.13.2 - 2023-05-22<\\/h4>\\n<ul>\\n<li>Fix: Hover settings not working as expected on Touch-Enabled devices in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22258\\\">#22258<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.1 - 2023-05-11<\\/h4>\\n<ul>\\n<li>Security Fix: Addressed security weaknesses in access management related functions<\\/li>\\n<li>Fix: Excerpt content pulled from post content is showing with HTML tags in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22367\\\">#22367<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.0 - 2023-05-08<\\/h4>\\n<ul>\\n<li>Tweak: Provided an option to assign excerpt automatically from post content in Post Excerpt dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20256\\\">#20256<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21715\\\">#21715<\\/a>)<\\/li>\\n<li>Tweak: Added Display Conditions functionality in Editor Top bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21675\\\">#21675<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22050\\\">#22050<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor_page_id<\\/code> from request URLs in the WC AJAX calls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18675\\\">#18675<\\/a>)<\\/li>\\n<li>Tweak: Added icons to menu items in Mega Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/21602\\\">#21602<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility to Toggle Button in WordPress Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/2348\\\">#2348<\\/a>)<\\/li>\\n<li>Tweak: Added \'Active item state\' to top-level menu items for anchor links in the Menu widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Loop Carousel widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Slides widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Media, Testimonial and Reviews Carousel widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to Table of Content widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Search Form widget<\\/li>\\n<li>Tweak: Added accessibility to images in Slides widget<\\/li>\\n<li>Tweak: Added accessibility to images in Call To Action widget<\\/li>\\n<li>Tweak: Added accessibility to images in Media Carousel widget<\\/li>\\n<li>Tweak: Added accessibility to images in Gallery widget<\\/li>\\n<li>Tweak: Added Lazy Load support for avatar image in Post Info widget<\\/li>\\n<li>Tweak: Added Lazy Load support to various Elementor Editor and Admin images<\\/li>\\n<li>Tweak: Added Lazy Load support for author image in Author Box widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Price List widget<\\/li>\\n<li>Fix: Content width is affected by the widget\'s width when Content Width is set to Fit to Content in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21842\\\">#21842<\\/a>)<\\/li>\\n<li>Fix: Empty value on Rows field causes an error in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21451\\\">#21451<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.2 - 2023-04-09<\\/h4>\\n<ul>\\n<li>Fix: Mini cart template appears as empty in various WordPress themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21836\\\">#21836<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.1 - 2023-04-02<\\/h4>\\n<ul>\\n<li>Fix: Default background colors are presented as transparent in Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21824\\\">#21824<\\/a>)<\\/li>\\n<li>Fix: Reverted the tweak of Form Submissions feature merged to the version (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21821\\\">#21821<\\/a>)<\\/li>\\n<li>Fix: Dropdown area is not closing when hovering outside of the content area in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.12.0 - 2023-03-29<\\/h4>\\n<ul>\\n<li>New: Introducing the Mega Menu with the new Menu widget - empowers you to achieve a much higher level of menu design, customization, and creativity<\\/li>\\n<li>New: Diversify your design with a Loop Alternate template - apply another template within your Loop Grid for design creativity<\\/li>\\n<li>New: Kickstart your workflow with predesigned Loop container-based templates<\\/li>\\n<li>Tweak: Added custom icon controls to various locations in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13678\\\">#13678<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17941\\\">#17941<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19295\\\">#19295<\\/a>)<\\/li>\\n<li>Tweak: Added a spacing control between navigation and slides in the Loop Carousel<\\/li>\\n<li>Tweak: Added responsive control to the \'Gap between slides\' control in the Loop Carousel<\\/li>\\n<li>Tweak: Added Custom CSS section in Loop Item template<\\/li>\\n<li>Tweak: Added an Article class metadata in Loop Item template<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in CTA widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in Flipbox widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Changed Nav Menu widget name to WordPress Menu widget<\\/li>\\n<li>Tweak: Added &quot;Form Validation&quot; control to Form widget<\\/li>\\n<li>Tweak: Updated custom messages in the Form widget<\\/li>\\n<li>Tweak: Improved accessibility in various elements in Gallery widget<\\/li>\\n<li>Tweak: Form Submissions feature merged to version<\\/li>\\n<li>Tweak: Loop feature promoted to Stable status<\\/li>\\n<li>Tweak: Page Transitions feature promoted to Stable status<\\/li>\\n<li>Tweak: Improved accessibility in filter bar in Gallery widget<\\/li>\\n<li>Tweak: Remove unused <code>aspect-ratio-*<\\/code> CSS classes<\\/li>\\n<li>Fix: Not all active breakpoints appear under &quot;Advanced Rules&quot; in popup publish settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17020\\\">#17020<\\/a>)<\\/li>\\n<li>Fix: Dynamic background image and video is not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.11.7 - 2023-03-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in WooCommerce components<\\/li>\\n<\\/ul>\\n<h4>3.11.6 - 2023-03-14<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in Author Box and Countdown widgets<\\/li>\\n<\\/ul>\\n<h4>3.11.5 - 2023-03-12<\\/h4>\\n<ul>\\n<li>Fix: Hamburger Menu Toggle not showing if breakpoint is set to Tablet Extra in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21003\\\">#21003<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.4 - 2023-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Prevented SVG file upload for better security enforcement in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.11.3 - 2023-02-26<\\/h4>\\n<ul>\\n<li>Fix: Error message appears when submitting a form placed below Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21432\\\">#21432<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x compatibility issues in various places<\\/li>\\n<\\/ul>\\n<h4>3.11.2 - 2023-02-22<\\/h4>\\n<ul>\\n<li>Fix: Save &amp; Back handle becomes inaccessible in various scenarios cases in Loop Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316\\\">#21316<\\/a>)<\\/li>\\n<li>Fix: Can\'t edit page when using \'Content Tabs\' and \'Section\' options in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.11.1 - 2023-02-15<\\/h4>\\n<ul>\\n<li>Fix: Featured Image dynamic tag is not working in Background images (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21313\\\">#21313<\\/a>)<\\/li>\\n<li>Fix: Time zone is not correct in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17485\\\">#17485<\\/a>)<\\/li>\\n<li>Fix: File upload field is not working in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21341\\\">#21341<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21314\\\">#21314<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.0 - 2023-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Carousel widget - Create powerful &amp; repeating loop templates and populate each one with dynamic content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>New: Added Date and Time Range option to Advanced Rules in Popup<\\/li>\\n<li>Tweak: Improved accessibility when opening and closing a popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9788\\\">#9788<\\/a>)<\\/li>\\n<li>Tweak: Improved accessibility of full-screen mode in Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19907\\\">#19907<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility support to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5861\\\">#5861<\\/a>)<\\/li>\\n<li>Tweak: Add <code>aria-label<\\/code> to read more link in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13784\\\">#13784<\\/a>)<\\/li>\\n<li>Tweak: Use <code>aspect-ratio<\\/code> property instead of CSS trick in Media Carousel widget<\\/li>\\n<li>Tweak: Updated translation string in Stripe widget<\\/li>\\n<li>Fix: Masonry and Columns controls are not working as expected with responsive in Posts and Loop Grid widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20670\\\">#20670<\\/a>)<\\/li>\\n<li>Fix: Invalid attributes names in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17400\\\">#17400<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working as expected in various widgets<\\/li>\\n<li>Fix: Form fields order is not presented correctly when exported to CSV in Form Submissions<\\/li>\\n<li>Fix: Dynamic background image and video are not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.10.3 - 2023-01-29<\\/h4>\\n<ul>\\n<li>Tweak: Added introduction video to loop item information modal in Theme Builder<\\/li>\\n<li>Fix: PHP 8.x throws errors and notices in some cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21087\\\">#21087<\\/a>)<\\/li>\\n<li>Fix: Infinite Scroll and Load on click pagination are not working as expected in Archive template<\\/li>\\n<li>Fix: Show row even when values do not exist in Form Submissions<\\/li>\\n<\\/ul>\\n<h4>3.10.2 - 2023-01-17<\\/h4>\\n<ul>\\n<li>Fix: Updated compatibility tag for Elementor v3.10<\\/li>\\n<\\/ul>\\n<h4>3.10.1 - 2023-01-09<\\/h4>\\n<p>Fix: Preview Could not be loaded error message appears on pages containing the Loop Grid in a header or footer templates<\\/p>\\n<h4>3.10.0 - 2023-01-09<\\/h4>\\n<ul>\\n<li>New: Added new dynamic tag for due date in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7737\\\">#7737<\\/a>)<\\/li>\\n<li>Tweak: Added <code>modified<\\/code> and <code>comment_count<\\/code> to Order By in posts query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11159\\\">#11159<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>footer<\\/code> tag in Blockquote and Comments widgets for better semantics<\\/li>\\n<li>Fix: Compatibility issue in Imagify Media Library filters due to <code>_elementor_is_screenshot<\\/code> meta filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19988\\\">#19988<\\/a>)<\\/li>\\n<li>Fix: Hotspot Widget label icon height issues when Inline Font Icons experiment is active<\\/li>\\n<li>Fix: Editing glitch when using two loop grid widgets on the same page with the same loop item template<\\/li>\\n<li>Fix: Equal height is not working when using sections in Loop Grid widget<\\/li>\\n<li>Fix: Large amount of menu items are not appearing correctly on a mobile device in Nav Menu widget<\\/li>\\n<li>Fix: Featured Image does not change dynamically when using infinite\\/click pagination in Loop Grid widget<\\/li>\\n<li>Fix: Removed action call of non-existent <code>display_empty_cart_template()<\\/code> method in Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.9.2 - 2022-12-21<\\/h4>\\n<ul>\\n<li>Fix: JS events do not trigger in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20708\\\">#20708<\\/a>)<\\/li>\\n<li>Fix: PHP Errors appear when not using the toggle menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18636\\\">#18636<\\/a>)<\\/li>\\n<li>Fix: Popups\' backgrounds disappear when using Lazy Load Background Images experiment<\\/li>\\n<\\/ul>\\n<h4>3.9.1 - 2022-12-14<\\/h4>\\n<ul>\\n<li>Fix: WooCommerce Product Gallery dynamic tag is not working in Basic Gallery, Gallery and Image Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20678\\\">#20678<\\/a>)<\\/li>\\n<li>Fix: Hide Empty option is not working in Menu Cart widget<\\/li>\\n<li>Fix: The Stripe Button widget doesn\'t work in Templates<\\/li>\\n<\\/ul>\\n<h4>3.9.0 - 2022-12-06<\\/h4>\\n<ul>\\n<li>New: Added support for WooCommerce to Loop Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20020\\\">#20020<\\/a>)<\\/li>\\n<li>Tweak: Added more options to \'Show up to X times\' advanced rule in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8187\\\">#8187<\\/a>)<\\/li>\\n<li>Tweak: Allow saving and reloading a page while editing in-place loop item template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19882\\\">#19882<\\/a>)<\\/li>\\n<li>Tweak: Added <code>$location param<\\/code> to <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18453\\\">#18453<\\/a>)<\\/li>\\n<li>Tweak: Removed redundant labels from group controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11666\\\">#11666<\\/a>)<\\/li>\\n<li>Tweak: Added support to use sections and columns as the layout structure of a Loop item template<\\/li>\\n<li>Tweak: Disabled movement when a repeater item is in focus in edit mode<\\/li>\\n<li>Tweak: Upgrade the autoprefixer package to better minify CSS files<\\/li>\\n<li>Tweak: Removed duplicate SQL queries on every page for better performance<\\/li>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Added more units options to Border Width control in various elements<\\/li>\\n<li>Tweak: Added <code>em<\\/code> units to Border Radius control in various elements<\\/li>\\n<li>Tweak: Added \'Equal height\' functionality to Loop Grid widget<\\/li>\\n<li>Fix: Issue with Related Products widget and WooCommerce Pixel Manager plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16934\\\">#16934<\\/a>)<\\/li>\\n<li>Fix: My Account widget gets hidden when using a single page template with post content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19627\\\">#19627<\\/a>)<\\/li>\\n<li>Fix: Cart is not updated when cache enabled in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19312\\\">#19312<\\/a>)<\\/li>\\n<li>Fix: Entrance animations are not working as expected with Infinite Loop and Load on CLick pagination in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20293\\\">#20293<\\/a>)<\\/li>\\n<li>Fix: Loading page issues in Form Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19973\\\">#19973<\\/a>)<\\/li>\\n<li>Fix: Recently Edited date and time not working as expected in Elementor Overview plugin in WordPress dashboard (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17966\\\">#17966<\\/a>)<\\/li>\\n<li>Fix: Recurring license mismatch error message when using translators plugins<\\/li>\\n<li>Fix: Submenu items triggers page transition instead of opening in Nav Menu widget<\\/li>\\n<li>Fix: Query values of Posts widget are not imported correctly when importing a Kit<\\/li>\\n<li>Fix: Loop items are exceeding the widget boundaries in Loop Grid widget<\\/li>\\n<li>Fix: Order by option is not working as expected when choosing Upsells, Cross-Sells and Related Products query in Products widget<\\/li>\\n<li>Fix: Various widgets disappear in certain scenarios when choosing direction Row or Column in Container<\\/li>\\n<\\/ul>\\n<h4>3.8.2 - 2022-11-20<\\/h4>\\n<ul>\\n<li>Fix: Z-index issues when applying sticky to Container<\\/li>\\n<li>Fix: Error message appears on front with Editor and Shop Manager roles when using the Loop Builder widget<\\/li>\\n<\\/ul>\\n<h4>3.8.1 - 2022-11-06<\\/h4>\\n<ul>\\n<li>Fix: Sticky inner section is not staying in the column when applying sticky option in Sections (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20203\\\">#20203<\\/a>)<\\/li>\\n<li>Fix: Post Title widget located in a loop item template disappears when enabling the hide title option inside page settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20207\\\">#20207<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20255\\\">#20255<\\/a>)<\\/li>\\n<li>Fix: ACF Dynamic data not rendering correctly in various scenarios (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20235\\\">#20235<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20258\\\">#20258<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20277\\\">#20277<\\/a>)<\\/li>\\n<li>Fix: Z-index issues when applying sticky to Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20227\\\">#20227<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.8.0 - 2022-10-30<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Builder as a beta status experiment - Create powerful &amp; repeating loop templates and populate each one with dynamic content and design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4440\\\">#4440<\\/a>)<\\/li>\\n<li>Tweak: Add <code>wp_body_open()<\\/code> to header in Header template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11562\\\">#11562<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15828\\\">#15828<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13089\\\">#13089<\\/a>)<\\/li>\\n<li>Tweak: Added support border-radius option to the Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14316\\\">#14316<\\/a>)<\\/li>\\n<li>Tweak: Import\\/Export CLI and UI mechanisms were merged into a unified service<\\/li>\\n<li>Tweak: User with no permission to Notes cannot be mentioned in a note<\\/li>\\n<li>Tweak: User with no permission to view a post cannot be mentioned in a note<\\/li>\\n<li>Tweak: Notes was added to the right click context-menu<\\/li>\\n<li>Tweak: Notes panel can be resizable<\\/li>\\n<li>Tweak: Notes panel can be dragged outside of the canvas in responsive mode in the editor<\\/li>\\n<li>Tweak: Updated form validation messages translation strings in Form widget<\\/li>\\n<li>Tweak: Updated translators comments<\\/li>\\n<li>Tweak: Theme Builder logo and Title should be clickable<\\/li>\\n<li>Tweak: Reduced API requests and DB calls on non-write setup<\\/li>\\n<li>Tweak: Added media queries to the Table of Contents widget<\\/li>\\n<li>Fix: Sticky option is not working as expected in various scenarios in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19540\\\">#19540<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19618\\\">#19618<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19777\\\">#19777<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19827\\\">#19827<\\/a>)<\\/li>\\n<li>Fix: Mixed Content errors on HTTPS in Video Playlist Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18895\\\">#18895<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18945\\\">#18945<\\/a>)<\\/li>\\n<li>Fix: Note\'s timestamp is being updated according to the last activity in Notes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19123\\\">#19123<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17582\\\">#17582<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in pagination in Posts widget<\\/li>\\n<li>Fix: Share buttons is accessible with keyboard but not clickable<\\/li>\\n<li>Fix: Sub-items icons style is missing in preview with Inline Font Icons experiment in Nav Menu widget<\\/li>\\n<li>Fix: Quotes are appearing as HTML when editing a note in Notes<\\/li>\\n<li>Fix: Label\'s Icon height increases when Inline Font Icons experiment is active in Hotspot Widget<\\/li>\\n<li>Fix: Sub conditions of templates are not overridden when importing a Kit<\\/li>\\n<li>Fix: X\\/Y Anchor Point controls were not visible for Scale and Rotate effects<\\/li>\\n<li>Fix: PHP warning notice appears in some situations when using motion effects<\\/li>\\n<\\/ul>\\n<h4>3.7.7 - 2022-09-20<\\/h4>\\n<ul>\\n<li>Fix: Default Flex Grow affects the layout when the container is set to direction Column in various widgets<\\/li>\\n<\\/ul>\\n<h4>3.7.6 - 2022-09-14<\\/h4>\\n<ul>\\n<li>Fix: Submissions menu item appears at the bottom of Elementor section in WordPress dashboard<\\/li>\\n<\\/ul>\\n<h4>3.7.5 - 2022-08-31<\\/h4>\\n<ul>\\n<li>Fix: Error message appears on front if WooCommerce is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553\\\">#19553<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.7.4 - 2022-08-29<\\/h4>\\n<ul>\\n<li>Tweak: PHP 5.6 Is deprecated<\\/li>\\n<li>Fix: Triangle icon is not being displayed in the Select field when Inline Font Icons Experiment is active in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18598\\\">#18598<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19495\\\">#19495<\\/a>)<\\/li>\\n<li>Fix: The page jumps or flickers to the video playlist on page reload in Video Playlist Widget<\\/li>\\n<\\/ul>\\n<h4>3.7.3 - 2022-07-31<\\/h4>\\n<ul>\\n<li>Tweak: Improved license mechanism for correct validation<\\/li>\\n<li>Fix: Sticky option causes unexpected results when using the Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>)<\\/li>\\n<li>Fix: Price list, Portfolio, Flip Box and Gallery widgets disappear when the direction is set to column in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18880\\\">#18880<\\/a>)<\\/li>\\n<li>Fix: Quotes character is showing up as <code>&amp;quot;<\\/code> when editing a note in Notes<\\/li>\\n<\\/ul>\\n<h4>3.7.2 - 2022-06-15<\\/h4>\\n<ul>\\n<li>Tweak: Applied optimized file handling in various modules<\\/li>\\n<li>Fix: Related posts query options are missing in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18633\\\">#18633<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18641\\\">#18641<\\/a>)<\\/li>\\n<li>Fix: Menu Cart Icon is not being displayed on all browsers when Inline Font Icons Experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17705\\\">#17705<\\/a>)<\\/li>\\n<li>Fix: Gallery widget is not working as expected in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18408\\\">#18408<\\/a>)<\\/li>\\n<li>Fix: Flip box is not visible when the direction is set to Row in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18413\\\">#18413<\\/a>)<\\/li>\\n<li>Fix: Portfolio widget is not visible when dragged into &quot;Row&quot; direction Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17653\\\">#17653<\\/a>)<\\/li>\\n<li>Fix: Menu cart is open automatically in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18629\\\">#18629<\\/a>)<\\/li>\\n<li>Fix: PHP error is being shown the license is expired in License screen<\\/li>\\n<\\/ul>\\n<h4>3.7.1 - 2022-05-16<\\/h4>\\n<ul>\\n<li>Fix: Notes icon appears as an empty square in admin top bar for users with permissions lower than Editor<\\/li>\\n<li>Fix: Notes experiment causes a PHP fatal error on some cases<\\/li>\\n<li>Fix: UI glitches in Notes feature<\\/li>\\n<\\/ul>\\n<h4>3.7.0 - 2022-05-10<\\/h4>\\n<ul>\\n<li>New: Introducing Notes - Work collaboratively directly within Elementor<\\/li>\\n<li>New: Stripe Button widget - Collect Stripe payments directly from your site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14748\\\">#14748<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Add to Cart dynamic tag - add products to cart from every widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10607\\\">#10607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11801\\\">#11801<\\/a>)<\\/li>\\n<li>New: Added WooCommerce Product Content dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16367\\\">#16367<\\/a>)<\\/li>\\n<li>Tweak: Added Related, Upsells and Cross-Sells query sources to Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8071\\\">#8071<\\/a>)<\\/li>\\n<li>Tweak: Added custom icon control to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18007\\\">#18007<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14357\\\">#14357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13151\\\">#13151<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11361\\\">#11361<\\/a>)<\\/li>\\n<li>Tweak: Added an option to minimize on Desktop device in Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9933\\\">#9933<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10729\\\">#10729<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10314\\\">#10314<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6691\\\">#6691<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11774\\\">#11774<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9051\\\">#9051<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5760\\\">#5760<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9774\\\">#9774<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom option in various Product widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10263\\\">#10263<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom control in Posts and Archive Posts widgets<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added percentage unit to padding control in Additional Information customize section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added quick link to create new theme parts directly from the Finder<\\/li>\\n<li>Tweak: Added the option to add a custom template to Dashboard screen in My Account widget<\\/li>\\n<li>Tweak: Added spacing control to view cart button in various product widgets<\\/li>\\n<li>Tweak: Added the option to add a custom template to empty cart state in Cart widget<\\/li>\\n<li>Tweak: Adjusted the layout of the Payment Methods screen in the My Account widget<\\/li>\\n<li>Tweak: Added lazy load option to Media Carousel, Reviews and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added Site Identity quick link to Logo widget<\\/li>\\n<li>Tweak: Added Site Identity quick link to Site Title widget<\\/li>\\n<li>Tweak: Created an attribute that allows disabling page transition for specific links<\\/li>\\n<li>Tweak: Added dynamic tag controls to Gallery widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Countdown widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Portfolio widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Price Table widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Login widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Blockquote widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Facebook Comments widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post Navigation widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Search Form widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Author Box widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post info widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Posts widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Product Meta widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Products widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Sitemap widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Reviews widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Code Highlight widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to PayPal Button widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added missing PHP documentation to hooks<\\/li>\\n<li>Fix: Scrolling glitches on mobile devices when Sticky Effect is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17767\\\">#17767<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18330\\\">#18330<\\/a>)<\\/li>\\n<li>Fix: Only 1st honypot field is validated when using multiple honeypot fields in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18136\\\">#18136<\\/a>)<\\/li>\\n<li>Fix: Checkout button background color is not working as expected in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18289\\\">#18289<\\/a>)<\\/li>\\n<li>Fix: Button labels are not accessible for screen readers in Share buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<li>Fix: Downloads titles controls are not working in responsive in WooCommerce Purchase Summary widget<\\/li>\\n<li>Fix: Excerpt length is not working as expected in Posts and Archive Posts widgets<\\/li>\\n<li>Fix: Titles &amp; Totals weight is not working in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Product image is not appearing on Single Product Page on template load<\\/li>\\n<li>Fix: Additional Information title not editable in some scenarios in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in Cart widget<\\/li>\\n<li>Fix: UI Glitch in Masonry control in Portfolio widget<\\/li>\\n<li>Fix: Custom breakpoints experiment didn\'t work on Single post and page templates<\\/li>\\n<li>Fix: Testimonial carousel &amp; Reviews widgets disregards the <code>alt<\\/code> attribute<\\/li>\\n<li>Fix: Playlist widget deeplink didn\'t send user directly to the widget in the page<\\/li>\\n<li>Fix: Masonry option causes the images to disappear in the Editor in Posts widget<\\/li>\\n<li>Fix: Scrollbar appears after clicking on the dropdown toggle in Nav Menu widget<\\/li>\\n<li>Fix: Custom icons disappear on frontend if the pack name contains numbers<\\/li>\\n<li>Fix: Custom Font disappears if the name contains only numbers<\\/li>\\n<li>Fix: <code>end-section()<\\/code> is missing from Progress Tracker and Facebook Embed widgets<\\/li>\\n<li>Tweak: Added a filter for conditions cache query in Theme Builder<\\/li>\\n<li>Fix: Customizations lost on Ajax refresh in WooCommerce Cart widget<\\/li>\\n<li>Fix: Hello theme Header and Footer experiment is not working when WooCommerce plugin is active<\\/li>\\n<li>Fix: Color controls are not working as expected in Checkout widget<\\/li>\\n<li>Fix: Color controls are not working as expected in My Account widget<\\/li>\\n<li>Fix: Empty state widget preview in the editor is disappearing in various widgets<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in WooCommerce Cart widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-7-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.6.5 - 2022-04-12<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issues for several widgets in iOS 14 and macOS 13 devices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18090\\\">#18090<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15910\\\">#15910<\\/a>)<\\/li>\\n<li>Fix: Button Alignment doesn\'t work in Custom Add To Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17810\\\">#17810<\\/a>)<\\/li>\\n<li>Fix: PHP warning is thrown in some cases in PayPal button widget<\\/li>\\n<li>Fix: PHP 8.1 throws errors and notices in some cases<\\/li>\\n<li>Fix: PHP notice was thrown when Kit Import process initiated without display conditions<\\/li>\\n<li>Fix: Create Account button always opens on the Sign Up screen even if the user has an account in Onboarding process<\\/li>\\n<\\/ul>\\n<h4>3.6.4 - 2022-03-15<\\/h4>\\n<ul>\\n<li>Tweak: Kit import dynamic reference support for templates and dynamic tags<\\/li>\\n<li>Tweak: Updated tested up to version tag to <code>3.6.0<\\/code><\\/li>\\n<li>Fix: Sticky caused scrolling issues after clicking an element that expands the page height (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17821\\\">#17821<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17839\\\">#17839<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18069\\\">#18069<\\/a>)<\\/li>\\n<li>Fix: When saving Global widget JS error is being thrown and editor fails to load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17954\\\">#17954<\\/a>)<\\/li>\\n<li>Fix: Motion effects are missing from Background section under Style tab in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18063\\\">#18063<\\/a>)<\\/li>\\n<li>Fix: Imported Kit doesn\'t appear in the theme builder after successful import in some cases<\\/li>\\n<li>Fix: Added future Pro support to fix the Cart icon that shifted aside in Menu cart widget<\\/li>\\n<\\/ul>\\n<h4>3.6.3 - 2022-02-28<\\/h4>\\n<ul>\\n<li>Fix: Custom Code display conditions modal is not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17865\\\">#17865<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17942\\\">#17942<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17994\\\">#17994<\\/a>)<\\/li>\\n<li>Fix: Share buttons are not accessible for keyboard navigation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.6.2 - 2022-02-14<\\/h4>\\n<ul>\\n<li>Fix: Auto updates mechanism is not working as expected (this version might be also installed automatically)<\\/li>\\n<\\/ul>\\n<h4>3.6.1 - 2022-02-09<\\/h4>\\n<ul>\\n<li>Tweak: Allow connecting via generic source for future feature support<\\/li>\\n<li>Fix: Custom Code doesn\'t work when WooCommerce is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17675\\\">#17675<\\/a>)<\\/li>\\n<li>Fix: Content animation didn\'t work when Improved asset loading experiment is active Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17055\\\">#17055<\\/a>)<\\/li>\\n<li>Fix: PHP warning appears some times when trying to force-check for available updates<\\/li>\\n<li>Fix: Page transitions are being triggered when not needed<\\/li>\\n<li>Fix: Text alignment on Tablet responsive device affects base device in Testimonial Carousel widget<\\/li>\\n<li>Fix: Harden Submissions feature to prevent potential security issues<\\/li>\\n<li>Fix: Page Transitions Icon option Preloader doesn\'t work on frontend<\\/li>\\n<\\/ul>\\n<h4>3.6.0 - 2022-01-31<\\/h4>\\n<ul>\\n<li>New: WooCommerce Purchase Summary widget - Fully customize the content and style of your order summary page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5756\\\">#5756<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15862\\\">#15862<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices styling on Site Settings - Customize the appearance of WooCommerce notices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14570\\\">#14570<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15896\\\">#15896<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices widget - Set the position of WooCommerce notices on your shop pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8124\\\">#8124<\\/a>)<\\/li>\\n<li>Experiment: Page Transitions - Customize the page loading experience, and increase brand recognition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10576\\\">#10576<\\/a>)<\\/li>\\n<li>Tweak: Added WooCommerce &amp; Theme Elements widgets to Improved CSS Loading experiment to save up 126KB per page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17412\\\">#17412<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17337\\\">#17337<\\/a>)<\\/li>\\n<li>Tweak: Added new layout options in WooCommerce Add To Cart and WooCommerce Custom Add To Cart widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5437\\\">#5437<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10617\\\">#10617<\\/a>)<\\/li>\\n<li>Tweak: Added Stroke functionality for typography control in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11158\\\">#11158<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor-section-wrap<\\/code> by adding it to the Optimized DOM Output experiment (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16950\\\">#16950<\\/a>)<\\/li>\\n<li>Tweak: Added style controls for variations in WooCommerce Menu Cart widget<\\/li>\\n<li>Tweak: Added color control to navigation dots in Media Carousel, Reviews, and Slides widgets<\\/li>\\n<li>Tweak: Disabled Vimeo autoplay on edit mode when getting video data in Video Playlist widget<\\/li>\\n<li>Tweak: Added notice about Facebook\'s new EU consent policy in Facebook Button, Facebook Comments, Facebook Embed, and Facebook Page widgets<\\/li>\\n<li>Tweak: Refactor string translation calls to use native WP translation methods<\\/li>\\n<li>Tweak: Convert <code>home_url<\\/code> license API call to <code>get_site_url<\\/code> for better compatibility<\\/li>\\n<li>Tweak: Promoted Default to New Theme Builder and Scroll Snap experiments to Stable status in Experiments screen<\\/li>\\n<li>Tweak: Scroll Snap experiment set to active by default for all websites in Experiments screen<\\/li>\\n<li>Tweak: Scrolling Effects in Header and Section backgrounds are not working as expected when effects are relative to the entire page<\\/li>\\n<li>Tweak: Added &quot;Auto Updates&quot; capability to Pro versions<\\/li>\\n<li>Tweak: Removed sequenced animation hover effect option from Classic skin in Call to Action widget<\\/li>\\n<li>Tweak: Added &quot;Excerpt Length&quot; control in Post Excerpt widget<\\/li>\\n<li>Tweak: Deleted deprecated methods from Query Control module<\\/li>\\n<li>Tweak: Adjusted Inline-CSS Experiment to work with Additional Custom Breakpoints experiment<\\/li>\\n<li>Fix: Automatically open cart functionality didn\'t work in product page in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5921\\\">#5921<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16276\\\">#16276<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16879\\\">#16879<\\/a>)<\\/li>\\n<li>Fix: Buttons are not visible when there are too many products in the cart in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17283\\\">#17283<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13005\\\">#13005<\\/a>)<\\/li>\\n<li>Fix: Mini cart modal z-index is too low in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>)<\\/li>\\n<li>Fix: Side cart buttons are not visible at first glance on mobile in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>)<\\/li>\\n<li>Fix: Read More field recognizes inline HTML elements as plain text in Posts and Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16985\\\">#16985<\\/a>)<\\/li>\\n<li>Fix: Load More functionality caused JS error console in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17036\\\">#17036<\\/a>)<\\/li>\\n<li>Fix: Autoplay is not working as expected when the lazy load is active in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15304\\\">#15304<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16274\\\">#16274<\\/a>)<\\/li>\\n<li>Fix: Right navigation area wasn\'t 100% clickable in Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14252\\\">#14252<\\/a>)<\\/li>\\n<li>Fix: Posts duplicate when there are two Posts widgets inside a page using pagination functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17056\\\">#17056<\\/a>)<\\/li>\\n<li>Fix: Global widget changes are not reflected on frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16820\\\">#16820<\\/a>)<\\/li>\\n<li>Fix: JS Error console message when using the Load More functionality and Post Per Page option in Posts widget<\\/li>\\n<li>Fix: Heading styling is not being loaded when Inline CSS experiment is active in Post and Page Title widgets<\\/li>\\n<li>Fix: Sticky offset not working as expected when changing device mode on the browser<\\/li>\\n<li>Fix: Scroll Snap functionality wasn\'t applied on Templates and Archives<\\/li>\\n<li>Fix: Toggle icon color didn\'t work on hover state when Inline Font Icons experiment is activated in Nav Menu widget<\\/li>\\n<li>Fix: Variations style controls are not working as expected in WooCommerce Add to Cart widget<\\/li>\\n<li>Fix: Display conditions module is not working as expected when using the new Theme Builder UI<\\/li>\\n<li>Fix: Edit header handles <code>z-index<\\/code> issues in Header document<\\/li>\\n<li>Fix: Panel icons UI glitch in Call To Action widget<\\/li>\\n<li>Fix: WordPress 5.9 <code>WP_User_query<\\/code> <code>who<\\/code> argument deprecation adjustments<\\/li>\\n<\\/ul>\\n<h4>3.5.2 - 2021-11-28<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted license mechanism to support trial period<\\/li>\\n<li>Fix: Updates made to Global Widgets do not reflect accordingly to linked widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815\\\">#16815<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle button doesn\'t change to \\u201cclose\\u201d when menu is collapsed in Nav Menu widget when Inline Font Awesome experiment is active<\\/li>\\n<li>Fix: Global Widget cannot be unlinked<\\/li>\\n<\\/ul>\\n<h4>3.5.1 - 2021-11-10<\\/h4>\\n<ul>\\n<li>Fix: Inline HTML elements appear as plain text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16816\\\">#16816<\\/a>)<\\/li>\\n<li>Fix: Dropdown items inherited values from Main Menu space between control in Nav Menu widget (<a href=\\\"(https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815)\\\">#16815<\\/a><\\/li>\\n<li>Fix: Order Summary titles style controls not applying on various devices in Cart widget<\\/li>\\n<li>Fix: Panel &quot;Need Help&quot; link is not correct in WooCommerce section in Site Settings<\\/li>\\n<\\/ul>\\n<h4>3.5.0 - 2021-11-01<\\/h4>\\n<ul>\\n<li>New: WooCommerce Checkout widget - Fully customize the content and style of your checkout page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15990\\\">#15990<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce Cart widget - Style your cart page the way you want with design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce My Account widget - Create a custom design for your my account pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: Progress Tracker widget - Motivate your customers to keep reading your site content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16576\\\">#16576<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Site Settings - Set your store pages within Elementor<\\/li>\\n<li>Experiment: Scroll Snap - Set the scene of every scroll (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10752\\\">#10752<\\/a>)<\\/li>\\n<li>Tweak: Changed infrastructure to prevent rendering bugs in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16354\\\">#16354<\\/a>)<\\/li>\\n<li>Tweak: Added the option to open submission in a new tab in Form Submissions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14967\\\">#14967<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive controls in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1851\\\">#1851<\\/a>)<\\/li>\\n<li>Tweak: Split Title and Price styling controls in Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7688\\\">#7688<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive capabilities to controls in Posts Archive widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Changed admin notice content when Pro installed without Core installed<\\/li>\\n<li>Tweak: Cleanup in <code>wp_options<\\/code> table<\\/li>\\n<li>Tweak: Changed Connect logic in Elementor top bar to simplify the connect process<\\/li>\\n<li>Tweak: Marked new Theme Builder as an Experiment and set to default for new sites<\\/li>\\n<li>Tweak: Enforced better security policies in various widgets and modules<\\/li>\\n<li>Tweak: Added load more button functionality to the Posts Archive widget<\\/li>\\n<li>Tweak: Renamed Elementor\'s responsive SCSS variables<\\/li>\\n<li>Tweak: Added dividers to horizontal layout in Nav Menu widget<\\/li>\\n<li>Tweak: Removed Google+ social network from Share Buttons widget<\\/li>\\n<li>Tweak: Convert usage of old Responsive class to use the new Breakpoints Manager<\\/li>\\n<li>Fix: jQuery in Heading doesn\'t work for not logged in users in Custom Code (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14515\\\">#14515<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14266\\\">#14266<\\/a>)<\\/li>\\n<li>Fix: Menu animation causing page horizontal scroll in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15184\\\">#15184<\\/a>)<\\/li>\\n<li>Fix: Wrong function call in Table of Content &amp; Post Excerpt widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16547\\\">#16547<\\/a>)<\\/li>\\n<li>Fix: Slides to Scroll control can\'t be set to Default if Widescreen mode has a value in Testimonial Carousel widget<\\/li>\\n<li>Fix: Sticky offset not working properly when changing device mode<\\/li>\\n<li>Fix: UTF character issues when exporting CSV file in Form Submissions<\\/li>\\n<li>Fix: Load More functionality doesn\'t work when the Posts widget placed inside an Archive template<\\/li>\\n<li>Fix: UI glitches and editing issues in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.4.2 - 2021-10-12<\\/h4>\\n<ul>\\n<li>Fix: Icons color style conflicts when Font-Awesome Inline experiment is active in Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16435\\\">#16435<\\/a>)<\\/li>\\n<li>Fix: Mini Cart hides page content when closed in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16305\\\">#16305<\\/a>)<\\/li>\\n<li>Fix: UI glitches in the Editor edit mode when inserting Post Content widget and Font-Awesome Inline experiment is active in Single Post template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16358\\\">#16358<\\/a>)<\\/li>\\n<li>Fix: Slides per view controls disappeared from multiple breakpoints in Testimonial Carousel<\\/li>\\n<li>Fix: Product variations UI glitch in Menu Cart widget<\\/li>\\n<li>Fix: Buttons UI glitch on Safari browser in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.1 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Fix: Sticky functionality is not working if the Additional Custom Breakpoints experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16186\\\">#16186<\\/a>)<\\/li>\\n<li>Fix: Slideshow skin UI glitch in Media Carousel widget<\\/li>\\n<li>Fix: Product price typography weight control is not working as expected in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.0 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Tweak: Added new Mini Cart layout type in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11312\\\">#11312<\\/a>)<\\/li>\\n<li>Tweak: Added styling options for Cart, Products, and Cart buttons in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14952\\\">#14952<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to open cart automatically when an item is added in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14119\\\">#14119<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to remove an item from cart without reloading the page with an AJAX request (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9531\\\">#9531<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10875\\\">#10875<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11309\\\">#11309<\\/a>)<\\/li>\\n<li>Tweak: Added Load More AJAX functionality to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14557\\\">#14557<\\/a>)<\\/li>\\n<li>Tweak: Added Vimeo support to the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15319\\\">#15319<\\/a>)<\\/li>\\n<li>Tweak: Improved asset loading performance by serving lighter JS files (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>)<\\/li>\\n<li>Tweak: Added query string to the URL only after the first video is played in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15348\\\">#15348<\\/a>)<\\/li>\\n<li>Tweak: Added various layout options with more responsive controls and cart structure options in Menu Cart widget<\\/li>\\n<li>Tweak: Added the option to open the menu cart by click or hover in Menu Cart widget<\\/li>\\n<li>Tweak: Added the ability to choose a specific product to draw data from in WooCommerce Dynamic tags<\\/li>\\n<li>Tweak: Removed auto-scroll to the widget location when arriving from external URL in Video Playlist widget<\\/li>\\n<li>Tweak: Removed the Video Playlist widget from the Experiments list<\\/li>\\n<li>Tweak: Added descriptive error messages for MailChimp action after submit and on form submit in Forms widget<\\/li>\\n<li>Tweak: Added tooltip trigger None and Hover for link in Hotspot widget<\\/li>\\n<li>Tweak: Added responsive controls to Offset and Effects Offset in Sticky options<\\/li>\\n<li>Tweak: Added responsive control to Alignment in Testimonial Carousel widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Added future compatibility to support better loading of <code>eicons<\\/code> font<\\/li>\\n<li>Tweak: Changed Rename Part title and button color in Theme Builder<\\/li>\\n<li>Fix: Products don\'t appear on the cart while editing in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15451\\\">#15451<\\/a>)<\\/li>\\n<li>Fix: Videos always start muted in the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15292\\\">#15292<\\/a>)<\\/li>\\n<li>Fix: Unnecessary spacing if submenu indicator is set to None in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15365\\\">#15365<\\/a>)<\\/li>\\n<li>Fix: MailChimp double opt-in feature doesn\'t work in Forms widget<\\/li>\\n<li>Fix: Fetching MailChimp groups field blocks the loading of the rest of the fields in the Form widget<\\/li>\\n<li>Fix: Missing field IDs causes forms not to be sent in Forms widget<\\/li>\\n<li>Fix: Full Content Skin is not working properly when inserted twice on the same page in Posts widget<\\/li>\\n<li>Fix: Avoid Duplicates option doesn\'t exclude manual selections in Posts widget<\\/li>\\n<li>Fix: Submenu indicator alignment issue in Nav menu widget<\\/li>\\n<li>Fix: Query control deprecated message appears when debug mode is defined<\\/li>\\n<li>Fix: Tweet Button icon incorrect color and size when the icon is rendered as SVG in Blockquote widget<\\/li>\\n<li>Fix: Video icon size is not changing on Active state in Video Playlist widget<\\/li>\\n<li>Fix: Header icon color is not working in Table Of Content widget<\\/li>\\n<li>Fix: Icons style glitches when Font Awesome Inline experiment is active in Video Playlist widget<\\/li>\\n<li>Fix: Bullet markers are not visible on preview mode when Font Awesome Inline experiment is active in Table of Content widget<\\/li>\\n<li>Fix: UI Glitch when Font-Awesome Inline experiment is active in Price Table widget<\\/li>\\n<li>Fix: Submenu Indicator appears larger when Font Awesome Inline experiment is active in Nav Menu widget<\\/li>\\n<li>Fix: Part name is deleted when clicking on the &quot;Change&quot; Button without changing the name in Theme Builder<\\/li>\\n<li>Fix: Redundant pagination queries in the Editor<\\/li>\\n<li>Deprecated: Remove all usages of <code>ElementorUtils::get_create_new_post_url()<\\/code><\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-4-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.3.8 - 2021-08-23<\\/h4>\\n<ul>\\n<li>Fix: Products grid width issue when adjusting columns and rows in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16001\\\">#16001<\\/a>)<\\/li>\\n<li>Fix: Font Awesome Inline experiment causes icons glitch in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16045\\\">#16045<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA v3 <code>z-index<\\/code> is lower than the Section\'s background color<\\/li>\\n<li>Fix: Style missing when Font Awesome inline experiment is active in Post Info widget<\\/li>\\n<li>Fix: Font Awesome icons were not loaded in Post Info widget<\\/li>\\n<li>Fix: Zero character can\'t be used as a placeholder in Number field in Form widget<\\/li>\\n<li>Fix: Carousels are not working properly in the Editor when Additional Custom Breakpoints experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.7 - 2021-08-15<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Additional Custom Breakpoints in Nav Menu widget<\\/li>\\n<li>Tweak: Added support for Additional Custom breakpoints in Motion Effects<\\/li>\\n<li>Fix: Columns didn\'t respond to changes in Gallery widget if Additional Custom Breakpoints Experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.6 - 2021-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Added support for future feature in Nav Menu widget<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Related widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Upsells widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Categories widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.5 - 2021-08-01<\\/h4>\\n<ul>\\n<li>Fix: Responsive layout glitches in Products and Products Archive widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15773\\\">#15773<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA V3 integration conflict with required fields validation in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.3.4 - 2021-07-21<\\/h4>\\n<ul>\\n<li>Fix: Grid layout glitch in WooCommerce Products Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15718\\\">#15718<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.3 - 2021-07-20<\\/h4>\\n<ul>\\n<li>Tweak: Added a descriptive message in Collect Submissions action after submit<\\/li>\\n<li>Tweak: Added future compatibility for Additional Custom Breakpoints for Pro widgets<\\/li>\\n<li>Fix: Some widget style breaks when Improved CSS Loading Experiment is active in certain cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15632\\\">#15632<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15683\\\">#15683<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15660\\\">#15660<\\/a>)<\\/li>\\n<li>Fix: Translation update keep appearing as available after install (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14297\\\">#14297<\\/a>)<\\/li>\\n<li>Fix: Wrong default icon color when using Font Awesome icons as inline SVG in Call to Action widget<\\/li>\\n<\\/ul>\\n<h4>3.3.2 - 2021-07-13<\\/h4>\\n<ul>\\n<li>Tweak: Updated plugin description<\\/li>\\n<li>Fix: MailChimp tags in form widget replaced existing tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Fix: Clicking videos from the items list in edit mode doesn\\u2019t initiate videos properly<\\/li>\\n<li>Fix: User unauthorized message when activated but not connected in Kit Library<\\/li>\\n<li>Fix: Carousel widgets did not support additional custom breakpoint responsive values<\\/li>\\n<li>Fix: Tab border is overridden by the Section background color in Video Playlist widget<\\/li>\\n<li>Fix: Widgets style breaks when Improved CSS Load experiment is active in a Single Page template and Post Content widget<\\/li>\\n<\\/ul>\\n<h4>3.3.1 - 2021-06-20<\\/h4>\\n<ul>\\n<li>Tweak: Added support for more Theme Builder display conditions in Export \\/ Import experiment<\\/li>\\n<li>Tweak: Adjusted License page heading structure for future feature<\\/li>\\n<li>Tweak: Adjusted Font Awesome icon for allowing support for future feature<\\/li>\\n<li>Fix: <code>frontend.min.js<\\/code> file size increased in Elementor Pro 3.3.0 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15278\\\">#15278<\\/a>)<\\/li>\\n<li>Fix: Prevent conditions from being reset when object cache is enabled in site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13299\\\">#13299<\\/a>)<\\/li>\\n<li>Fix: Custom Code publish modal responsiveness issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14519\\\">#14519<\\/a>)<\\/li>\\n<li>Fix: Populating fields with options programmatically doesn\'t appear in Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10671\\\">#10671<\\/a>)<\\/li>\\n<li>Fix: Large images are not shown on the Image Carousel widget when set via Toolset dynamic tag<\\/li>\\n<li>Fix: Enable inline editing to the inner content tabs in Video Playlist widget<\\/li>\\n<li>Fix: Clicking on the video list doesn\'t play videos properly in Video Playlist widget<\\/li>\\n<li>Fix: Hide Play Icon control when Image overlay is toggled off in Video Playlist widget<\\/li>\\n<li>Fix: Removed extra space below the player when viewing from mobile view in Video Playlist widget<\\/li>\\n<li>Fix: Import button is not working properly in Theme Builder interface<\\/li>\\n<li>Fix: Preview Dynamic Content as control is not updating preview and throws an error in Popup Builder<\\/li>\\n<\\/ul>\\n<h4>3.3.0 - 2021-06-08<\\/h4>\\n<ul>\\n<li>New: Video Playlist widget - Add Engaging Video Content to Your Website (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11859\\\">#11859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7803\\\">#7803<\\/a>)<\\/li>\\n<li>New: Hotspot widget - Create Interactive Images With Contextually Relevant Information (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7282\\\">#7282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2768\\\">#2768<\\/a>)<\\/li>\\n<li>Tweak: Accessibility improvements for sub-menus in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13859\\\">#13859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13810\\\">#13810<\\/a>)<\\/li>\\n<li>Tweak: MailChimp action after submit can now add new tags to existing subscribers in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/forms\\/record\\/actions_before<\\/code> to filter the record before it sent to Actions After Submit in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14261\\\">#14261<\\/a>)<\\/li>\\n<li>Tweak: Yoast SEO breadcrumbs widget can be used in Elementor without the need of enabling them in Yoast setting<\\/li>\\n<li>Tweak: Added future support for widgets CSS conditional loading (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10329\\\">#10329<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14229\\\">#14229<\\/a>)<\\/li>\\n<li>Tweak: Added future support for Sticky JS library conditional loading<\\/li>\\n<li>Tweak: Added future support for Import \\/ Export experiment<\\/li>\\n<li>Tweak: Preparations and fixes for Import Export Experiment in Pro version<\\/li>\\n<li>Tweak: Added gradient button capabilities to Login widget buttons<\\/li>\\n<li>Tweak: Added gradient button capabilities to Slides widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Price Table widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Flip Box widget button<\\/li>\\n<li>Tweak: Added Code Highlight widget Developers Documentation<\\/li>\\n<li>Tweak: Adjusted Submissions page for future updates<\\/li>\\n<li>Tweak: Added <code>em<\\/code> and <code>%<\\/code> units for padding control in Carousel widgets<\\/li>\\n<li>Tweak: Shorten currency name to currency symbol in PayPal button widget<\\/li>\\n<li>Fix: Custom Fonts URLs should be replaced when replace URL is triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7376\\\">#7376<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10382\\\">#10382<\\/a>)<\\/li>\\n<li>Fix: The currency symbol size changed in the Price Table widget if enabling sale (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13519\\\">#13519<\\/a>)<\\/li>\\n<li>Fix: Nav Menu widget is not loading Font Awesome submenu icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9907\\\">#9907<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle is not working in Nav menu widget<\\/li>\\n<li>Fix: Activation bug for IDN domains<\\/li>\\n<li>Fix: Conditions modal responsive glitches in Custom Code<\\/li>\\n<li>Fix: Duplicated strings in Custom Code module<\\/li>\\n<li>Fix: Enable resize option for code input field in Custom Code<\\/li>\\n<li>Fix: \\u201cSave &amp; Close \\u201cbutton in Custom Code\'s Conditions modal was not visible on small screen sizes<\\/li>\\n<li>Fix: Removing a column from a section in the navigator resulted in an empty section<\\/li>\\n<li>Fix: Recommend option is cut If the layout is not &quot;Standard&quot; in the Facebook Button widget<\\/li>\\n<li>Fix: Video item does not play without adding an image in Media Carousel widget<\\/li>\\n<li>Fix: <code>search-plus<\\/code> icon missing from panel in Media Carousel widget<\\/li>\\n<li>Fix: UI hover state glitch in Media Carousel widget<\\/li>\\n<li>Fix: PHP notice was thrown when trying to import a kit without overrideConditions parameter in Kit Import flow<\\/li>\\n<li>Fix: Templates conditions not imported if there are no conflicts in Import Export Experiment<\\/li>\\n<li>Fix: Non english values are not encoded properly on Submissions export<\\/li>\\n<li>Fix: Theme Builder import is not working properly<\\/li>\\n<li>Fix: UI glitch when no global widgets were found in Editor Panel<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-3-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.2.2 - 2021-05-05<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Expert tier templates in Templates Library<\\/li>\\n<li>Tweak: Updated compatibility tag to support Elementor v3.2.x<\\/li>\\n<li>Tweak: Added compatibility for future Library improvements<\\/li>\\n<li>Fix: Toolset image dynamic field is not working with Gallery widget<\\/li>\\n<\\/ul>\\n<h4>3.2.1 - 2021-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added strings context in PayPal button and Price Table widgets<\\/li>\\n<li>Tweak: Added support for future Import \\/ Export Kit feature<\\/li>\\n<li>Fix: Submissions with over than 191 characters weren\'t indexed properly<\\/li>\\n<\\/ul>\\n<h4>3.2.0 - 2021-03-14<\\/h4>\\n<ul>\\n<li>New: PayPal Button widget - Collect PayPal payments directly from your site<\\/li>\\n<li>Experiment: Submissions - Save all of your form submissions in one place (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1686\\\">#1686<\\/a>)<\\/li>\\n<li>Tweak: Added Stay In Column option to Inner Section element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7956\\\">#7956<\\/a>)<\\/li>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Tweak: Changed descriptive text in Create Custom Code screen<\\/li>\\n<li>Tweak: Added support for dynamic capabilities in Code Highlight widget<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>share-link<\\/code> library<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>dialog<\\/code> library in Popup<\\/li>\\n<li>Tweak: Allow overwriting the assets URL when using a mirror domain<\\/li>\\n<li>Fix: Animation was triggered multiple times when accessing the viewport in certain cases in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13951\\\">#13951<\\/a>)<\\/li>\\n<li>Fix: Location is not being updated after a Custom Code snippet is published (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13971\\\">#13971<\\/a>)<\\/li>\\n<li>Fix: Custom Fonts CSS files were not updated after regenerating CSS files<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: Empty order buttons are displayed in Custom Fonts screen<\\/li>\\n<li>Fix: Typo in \'Reply To\' Email action after submit placeholder in Forms widget<\\/li>\\n<li>Fix: Unnecessary Save Draft button in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Custom Code<\\/li>\\n<li>Fix: Sanitized options in the editor to enforce better security policies<\\/li>\\n<li>Deprecated: See all deprecations to this version in our (<a href=\\\"https:\\/\\/developers.elementor.com\\/v3-2-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.1.1 - 2021-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Fix: Popup event handler is undefined (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475]\\\">#11475<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690\\\">#10690<\\/a>)<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Code Highlight widget<\\/li>\\n<li>Fix: Minor UI glitches in Code Highlight widget<\\/li>\\n<li>Fix: Users can\'t get Pro Developer Edition version updates<\\/li>\\n<\\/ul>\\n<h4>3.1.0 - 2021-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Code - Add custom code snippets to your site, including <code>head<\\/code>, <code>body<\\/code> start and <code>body<\\/code> end<\\/li>\\n<li>New: Meet Code Highlight widget - showcase any syntax with highlighted UI (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5815\\\">#5815<\\/a>)<\\/li>\\n<li>Experiment: Improved Pro widgets performance by loading JS and Swiper assets conditionally in frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/experiment-optimized-asset-loading\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Compatibility Tag support in Elementor Pro (<a href=\\\"https:\\/\\/developers.elementor.com\\/compatibility-tag\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Rotating Text animation in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4625\\\">#4625<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added an option to set Selected color for Typing effect in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5403\\\">#5403<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7826\\\">#7826<\\/a>)<\\/li>\\n<li>Tweak: Added animation Loop option for Animated Headline (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9749\\\">#9749<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2457\\\">#2457<\\/a>)<\\/li>\\n<li>Tweak: Added timing options for Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4392\\\">#4392<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added Word Wrap control to Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13577\\\">#13577<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.15.1<\\/li>\\n<li>Tweak: Improved method of loading field mapping repeater in Form widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/how-to-add-a-repeater-control-to-elementor-add-on\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Show on Browsers&quot; Popup Advanced Rule<\\/li>\\n<li>Tweak: Added real-time JS handling to prevent redundant renders in Slides widget and all Carousel widgets<\\/li>\\n<li>Tweak: Import scroll utility from core and remove it from Pro<\\/li>\\n<li>Tweak: Added alignment options for Post Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9757\\\">#9757<\\/a>)<\\/li>\\n<li>Tweak: Changed alignment control to work with selectors in Share Buttons<\\/li>\\n<li>Tweak: Upgraded to Webpack 5, Grunt-Webpack 4 and TerserPlugin instead of UglifyJsPlugin<\\/li>\\n<li>Fix: Steps Divider is not vertically aligned in Multi Step Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12569\\\">#12569<\\/a>)<\\/li>\\n<li>Fix: Slides are playing in an infinite loop mode even when the option is disabled in Slides Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Redundant spacing is added to Share Buttons widget<\\/li>\\n<li>Fix: Step buttons text is not updated without a page reload in Forms widget<\\/li>\\n<li>Fix: Overflow issue in certain animations in Animated Headline widget<\\/li>\\n<li>Fix: When dragging a new Testimonial Carousel there is a console error thrown<\\/li>\\n<li>Fix: Step Buttons are cut in mobile view in Multi Step Form<\\/li>\\n<li>Fix: Submit and Step buttons size differences when using Twenty Twenty theme<\\/li>\\n<li>Fix: Duplicate button Text Color control in Slides widget<\\/li>\\n<li>Fix: JS error is thrown when editing and saving global widgets<\\/li>\\n<li>Fix: <code>get_version<\\/code> API function may fail with Redis \\/ DB cache<\\/li>\\n<li>Fix: Multiple license check requests are created in certain cases<\\/li>\\n<li>Deprecated: Deprecate methods prefixed with an underscore and replace them with unprefixed methods<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-1-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.0.10 - 2021-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Added Editing Handles string translation compatibility with Elementor v3.1.0<\\/li>\\n<\\/ul>\\n<h4>3.0.9 - 2020-12-29<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility to support Elementor 3.1.0<\\/li>\\n<li>Fix: Wrong phrasing of Import template success message in Theme Builder<\\/li>\\n<li>Fix: Border color glitch in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.8 - 2020-11-26<\\/h4>\\n<ul>\\n<li>Fix: Navigation arrows UI glitch in Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13172\\\">#13172<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.0.7 - 2020-11-25<\\/h4>\\n<ul>\\n<li>Fix: Console Error when dragging  Testimonials Carousel widget<\\/li>\\n<li>Fix: Arrows of Testimonial and Reviews Carousel widgets navigate to the wrong direction in RTL websites<\\/li>\\n<li>Fix: Removed the conditional loading of Webpack<\\/li>\\n<li>Fix: Fatal error is thrown after deleting an associated custom taxonomy when Posts widget with Cards skin has a badge<\\/li>\\n<li>Fix: Upload JSON files only when the user allowed to prevent security issues<\\/li>\\n<li>Fix: Gallery not displayed in Theme Builder templates preview<\\/li>\\n<\\/ul>\\n<h4>3.0.6 - 2020-11-04<\\/h4>\\n<ul>\\n<li>Tweak: Updated the embedded post in Facebook Embed widget<\\/li>\\n<li>Fix: Minor UI glitches in Theme Builder\'s conditions screen footer<\\/li>\\n<li>Fix: Template type changes into Single Page after conditions change in Theme Builder<\\/li>\\n<li>Fix: Redundant Custom Caption option in Site Logo widget<\\/li>\\n<li>Fix: Removed unused code in Drip integration<\\/li>\\n<li>Fix: Removed Weibo and WeChat social networks due to website and links inactivity from Share Buttons widget<\\/li>\\n<li>Fix: Removed redundant code from Portfolio and Post Navigation widgets<\\/li>\\n<\\/ul>\\n<h4>3.0.5 - 2020-09-23<\\/h4>\\n<ul>\\n<li>Fix: If the default page layout is set to &quot;Canvas&quot; Headers and Footers cannot be edited<\\/li>\\n<li>Fix: Product Image Dynamic Tag throws an error when no image is set<\\/li>\\n<li>Fix: Missing Single document placeholder in Theme Builder<\\/li>\\n<li>Fix: Document editing handles inherit the <code>font-family<\\/code> from 3rd party source<\\/li>\\n<li>Fix: Can\'t add linebreaks to Textarea input when used as Multi Step Form<\\/li>\\n<li>Fix: Incorrect width in Facebook Page widget<\\/li>\\n<li>Fix: Added compatibility to allow the use of \'get_create_url\' in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.4 - 2020-09-09<\\/h4>\\n<ul>\\n<li>Fix: Autogenerated screenshots appear in WP Media Library modal (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12304\\\">#12304<\\/a>)<\\/li>\\n<li>Fix: Make sure Elementor Posts widget Pagination doesn\'t interfere with 3rd party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Shrinking conditions indicator in Theme Builder<\\/li>\\n<li>Fix: Column can\'t be dragged and dropped if it populates a Global widget<\\/li>\\n<li>Fix: Styles are missing from Single templates in some edge cases<\\/li>\\n<\\/ul>\\n<h4>3.0.3 - 2020-09-02<\\/h4>\\n<ul>\\n<li>Fix: Pagination doesn\'t work in WordPress 5.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Change delete template action to &quot;Move to Trash&quot; in the new Theme Builder view<\\/li>\\n<\\/ul>\\n<h4>3.0.2 - 2020-08-31<\\/h4>\\n<ul>\\n<li>Tweak: Replaced WordPress &quot;Learn More&quot; links with dynamic links for better control over time (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12312\\\">#12312<\\/a>)<\\/li>\\n<li>Tweak: UI tweaks to the Conditions screen In the new Theme Builder<\\/li>\\n<li>Fix: Motion Effects not working when assigned to a column and throws JS error when DOM optimization is disabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12299\\\">#12299<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12275\\\">#12275<\\/a>)<\\/li>\\n<li>Fix: Multiple Galleries display all the images in the Lightbox slideshow (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11809\\\">#11809<\\/a>)<\\/li>\\n<li>Fix: Old Theme Builder is being opened when accessing through the Finder<\\/li>\\n<li>Fix: Mixed templates import glitch in Theme Builder<\\/li>\\n<li>Fix: Card icon sizes in Theme Builder<\\/li>\\n<li>Fix: Preview button leads to <code>render_mode<\\/code> instead of preview when importing a template from the new Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.1 - 2020-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Keep previous Theme Builder when accessing from the WP Dashboard for legacy support<\\/li>\\n<li>Tweak: Updated video tutorials in Theme Builder<\\/li>\\n<li>Tweak: Don\'t show auto-screenshots in the Media Library (Props <a href=\\\"https:\\/\\/github.com\\/black-eye\\\">@black-eye<\\/a>)<\\/li>\\n<li>Fix: Repeater items throws <code>childView<\\/code> is undefined message in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12239\\\">#12239<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12221\\\">#12221<\\/a>)<\\/li>\\n<li>Fix: Misspelling of the word &quot;occurred&quot; in Form widget default error message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12137\\\">#12137<\\/a>)<\\/li>\\n<li>Fix: Facebook comments not showing up (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12157\\\">#12157<\\/a>)<\\/li>\\n<li>Fix: Check for conflicts in Theme Builder doesn\'t work properly<\\/li>\\n<li>Fix: Minor UI fixes in Theme Builder<\\/li>\\n<li>Fix: Dark mode glitches in Theme Builder<\\/li>\\n<li>Fix: Global Site Part toaster appears when you publish a Popup<\\/li>\\n<li>Fix: Site Parts aren\'t in the correct order in Theme Builder<\\/li>\\n<li>Fix: Date field caused forms to get corrupted in Forms widget<\\/li>\\n<li>Fix: Theme Builder application page is forbidden<\\/li>\\n<\\/ul>\\n<h4>3.0.0 - 2020-08-23<\\/h4>\\n<ul>\\n<li>New: Introducing the new and improved Theme Builder<\\/li>\\n<li>Tweak: Removed <code>.elementor-inner<\\/code> and <code>.elementor-column-wrap<\\/code> from DOM output to improve performance (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7351\\\">#7351<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7817\\\">#7817<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/dom-improvements-ahead-html-wrappers-removal-from-v3-0\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added contextual anchors ID support to Table of Contents widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10052\\\">#10052<\\/a>)<\\/li>\\n<li>Tweak: Added WeChat and Weibo social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11554\\\">#11554<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Redirect after Login\\/Logout in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11343\\\">#11343<\\/a>)<\\/li>\\n<li>Tweak: Added Blend Mode and CSS Filters controls to adjust the Background Overlay in Flipbox widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11653\\\">#11653<\\/a>)<\\/li>\\n<li>Tweak: Added responsive capabilities to Toggle Button styling in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8269\\\">#8269<\\/a>)<\\/li>\\n<li>Tweak: Added responsive Text Alignment control in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11968\\\">#11968<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic content to Ribbon element in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10364\\\">#10364<\\/a>)<\\/li>\\n<li>Tweak: Converted uses of Color and Typography Schemes to Global Colors and Fonts<\\/li>\\n<li>Tweak: Separated Title and Description control fields labels in Call to Action widget<\\/li>\\n<li>Tweak: Removed unnecessary style in WC Product with variations<\\/li>\\n<li>Tweak: Converted Portfolio, Posts and Share Buttons widgets to use CSS Variable-based Elementor Grid (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-dropping-support-ie\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Date Modified option to Posts widget metadata<\\/li>\\n<li>Fix: PHP 7.4 compatibility to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11355\\\">#11355<\\/a>)<\\/li>\\n<li>Fix: Divider alignment issue in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11628\\\">#11628<\\/a>)<\\/li>\\n<li>Fix: Color doesn\\u2019t change in Products Archive Description widget<\\/li>\\n<li>Fix: WC Product variations layout breaks when using Variation Swatches plugin<\\/li>\\n<li>Fix: WC Product variations layout issue<\\/li>\\n<li>Fix: WC Product variations mobile zoom-in glitch<\\/li>\\n<li>Fix: Can\'t edit a Popup after accessing Theme Style<\\/li>\\n<li>Fix: Twitter icon missing in Blockquote widget<\\/li>\\n<li>Fix: Removed redundant default text color from Share Buttons minimal skin<\\/li>\\n<li>Fix: UI glitch in Display Conditions modal<\\/li>\\n<li>Fix: Insert template button UI glitch in Templates Library<\\/li>\\n<li>Fix: Added sanitization to post titles in WordPress dashboard for better security<\\/li>\\n<li>Fix: Show when arriving from search engines rule doesn\'t work in Popup<\\/li>\\n<li>Fix: Child categories are shown with a different parent category in Query control<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.10.3 - 2020-06-29<\\/h4>\\n<ul>\\n<li>Fix: Form not being submitted when using &quot;Progress Bar&quot; and &quot;None&quot; view types in Multi Step Form (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11596\\\">#11596<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11610\\\">#11610<\\/a>)<\\/li>\\n<li>Fix: Missing &quot;for&quot; attribute in Password field label in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8646\\\">#8646<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.2 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Fix: Run step events only when in Multi Step Form mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11644\\\">#11644<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.1 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Changed control labels and ordering in Price Table, Lottie and Form widgets<\\/li>\\n<li>Fix: Popup close button vertical position glitch (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10921\\\">#10921<\\/a>)<\\/li>\\n<li>Fix: Radio field placement glitch when in Multi Step mode in Form widget<\\/li>\\n<li>Fix: Clicking <code>Enter<\\/code> key submits the form in Multi Step Form<\\/li>\\n<li>Fix: Hardened sanitization in Custom Attributes to avoid security issues<\\/li>\\n<\\/ul>\\n<h4>2.10.0 - 2020-06-07<\\/h4>\\n<ul>\\n<li>New: Introducing Multi-Step Forms - Breakdown long forms into simple steps (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5975\\\">#5975<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3911\\\">#3911<\\/a>)<\\/li>\\n<li>New: Introducing Lottie widget - easily add Lottie animations to your site, no coding needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11026\\\">#11026<\\/a>)<\\/li>\\n<li>Tweak: Added spacing option to Posts widget pagination (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5682\\\">#5682<\\/a>)<\\/li>\\n<li>Tweak: Changed texts and logic for administrator plugin renewal notices<\\/li>\\n<li>Tweak: Added new Scroll Util for improved scrolling handling<\\/li>\\n<li>Tweak: Improved Motion Effects animation performance<\\/li>\\n<\\/ul>\\n<h4>2.9.5 - 2020-05-24<\\/h4>\\n<ul>\\n<li>Fix: Added sanitization to Custom Attributes control to avoid security issue<\\/li>\\n<\\/ul>\\n<h4>2.9.4 - 2020-05-07<\\/h4>\\n<ul>\\n<li>Fix: Hardened user role that is allowed to upload icon sets and unzip only allowed files in Custom Icons to prevent security vulnerability<\\/li>\\n<\\/ul>\\n<h4>2.9.3 - 2020-04-19<\\/h4>\\n<ul>\\n<li>Fix: Form shortcode IDs are not wrapped in double-quotes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11023\\\">#11023<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10932\\\">#10932<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10967\\\">#10967<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11000\\\">#11000<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11049\\\">#11049<\\/a>)<\\/li>\\n<li>Fix: Escaped Form records metadata to prevent security vulnerability<\\/li>\\n<li>Fix: Closing &quot;Save Changes&quot; document confirmation modal causes Panel infinite loading<\\/li>\\n<li>Fix: Ken Burns effect not working when there is only one slide in Slides widget<\\/li>\\n<li>Fix: Document handles UI glitch<\\/li>\\n<\\/ul>\\n<h4>2.9.2 - 2020-03-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility with WordPress v5.4 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10745\\\">#10745<\\/a>)<\\/li>\\n<li>Fix: Image ratio number is displayed under the Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10874\\\">#10874<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color setting overrides the Table of Content list style<\\/li>\\n<li>Fix: PHP notice when using dynamic user info <code>id<\\/code><\\/li>\\n<li>Fix: Navigation arrows direction is crossed on first drag in Slides Widget<\\/li>\\n<li>Fix: &quot;No headings were found on this page&quot; message was not displayed in the frontend in Table of Contents widget<\\/li>\\n<li>Fix: Container includes Popup tags by default in Table of Contents widget<\\/li>\\n<li>Fix: Twitter icon display issue when Font Awesome 4 support is disabled in Blockquote widget<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<\\/ul>\\n<h4>2.9.1 - 2020-03-16<\\/h4>\\n<ul>\\n<li>Fix: Can\'t access Elementor Editor when there is Page Title widget in the page<\\/li>\\n<li>Fix: Applying styling to Post Content widget affects the Page and Post editing handles<\\/li>\\n<\\/ul>\\n<h4>2.9.0 - 2020-03-15<\\/h4>\\n<ul>\\n<li>New: Introducing Full Site Editing: Design header, footer, and content all in one place! (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4985\\\">#4985<\\/a>)<\\/li>\\n<li>New: Added Global Custom CSS for Your Entire Site in Theme Style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3345\\\">#3345<\\/a>)<\\/li>\\n<li>New: Added Dynamic Colors tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6485\\\">#6485<\\/a>)<\\/li>\\n<li>Tweak: Added option to set the Site Part HTML Wrapper Tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9293\\\">#9293<\\/a>)<\\/li>\\n<li>Tweak: Added Link Attributes support to Pro widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5716\\\">#5716<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3642\\\">#3642<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9225\\\">#9225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9079\\\">#9079<\\/a>)<\\/li>\\n<li>Tweak: Added Theme Style support in Theme Builder parts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10564\\\">#10564<\\/a>)<\\/li>\\n<li>Tweak: Avoid creating empty Custom Font<\\/li>\\n<li>Tweak: Added <code>aria-expanded<\\/code> attribute to Menu Cart widget<\\/li>\\n<li>Tweak: Moved Link Actions module to Core plugin<\\/li>\\n<li>Tweak: Changed the name of \\u201cTypeKit Web Fonts by Adobe\\u201d to \\u201cAdobe Fonts\\u201d<\\/li>\\n<li>Tweak: Removed redundant display conditions from Blockquote, Flipbox, Price Table, and Search Form widgets<\\/li>\\n<li>Tweak: Pro widgets are not draggable unless Elementor license has been activated<\\/li>\\n<li>Tweak: Remove redundant <code>label_block<\\/code> parameters from several controls<\\/li>\\n<li>Tweak: Converted controls selectors to CSS variables in Gallery widget<\\/li>\\n<li>Tweak: Replaced Stumbleupon with Mix in Reviews widget recommended icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added Mix to the Share Buttons network list (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Open in new tab&quot; option to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7924\\\">#7924<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.12.0<\\/li>\\n<li>Tweak: Added new Lightbox compatibility for Gallery and Media Carousel widgets<\\/li>\\n<li>Tweak: Expose external API for Swiper instances<\\/li>\\n<li>Tweak: Added compatibility to JS API in Theme Builder, Popups, Form widget and Global widget<\\/li>\\n<li>Tweak: Replaced nerd icons with new Elementor emojis<\\/li>\\n<li>Tweak: Added specific <code>color<\\/code> attribute to header title in Table of Contents widget<\\/li>\\n<li>Fix: Line break issues in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10585\\\">#10585<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color overrides the Table of Content list style<\\/li>\\n<li>Fix: Active state glitches when using Table of contents widget with Sticky mode<\\/li>\\n<li>Fix: &quot;Graphic Element&quot; section appears as empty in case of unmarked Graphic Element in Call to Action widget<\\/li>\\n<li>Fix: Page Title widget render glitches in the Editor<\\/li>\\n<li>Fix: Image ratio parameter visible in some edge cases in Posts widget<\\/li>\\n<li>Fix: Image missing when sharing to Pinterest using Share Buttons widget<\\/li>\\n<li>Fix: Theme Style Link color setting override the list style in Table of Contents widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v2-9-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.8.5 - 2020-03-08<\\/h4>\\n<ul>\\n<li>Tweak: Added new Swiper parameter to all Pro carousels to allow 3rd party integration<\\/li>\\n<li>Fix: Missing closing bracket in Animated Headline widget<\\/li>\\n<li>Fix: Share buttons widgets show Font Awesome 4 icons on first drag in Editor<\\/li>\\n<\\/ul>\\n<h4>2.8.4 - 2020-02-16<\\/h4>\\n<ul>\\n<li>Tweak: Added Lightbox Title &amp; Description support to Gallery widget<\\/li>\\n<li>Tweak: Added RTL support for Slides widget<\\/li>\\n<li>Tweak: Display Lightbox images in Full size in Gallery widget<\\/li>\\n<li>Fix: Template with Slides widget not working properly when placed inside Tabs, Accordion and Toggle widget<\\/li>\\n<li>Fix: Dropdown menu lost styling after Elementor Pro v2.8 upgrade in Nav Menu widget<\\/li>\\n<li>Fix: Indent doesn\'t work on RTL websites in Table of Contents widget<\\/li>\\n<li>Fix: Query Control throws <code>Undefined index: q<\\/code> error<\\/li>\\n<li>Fix: Typography control not affecting dropdown menu in Nav Menu widget<\\/li>\\n<li>Fix: Discord forms integration fails to send submissions in some server configurations<\\/li>\\n<li>Fix: Rotating headlines don\'t align center in Animated Headline widget<\\/li>\\n<li>Fix: Custom secondary color displayed when not needed in Share buttons widget<\\/li>\\n<li>Fix: Motion Effects of certain objects are not functioning properly on Safari browser<\\/li>\\n<li>Fix: Missing eye icon in Single template footer preview button<\\/li>\\n<\\/ul>\\n<h4>2.8.3 - 2020-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Updated Table of Contents widget panel location<\\/li>\\n<li>Fix: ACF URL Dynamic field throws <code>undefined index<\\/code> PHP notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9929\\\">#9929<\\/a>)<\\/li>\\n<li>Fix: Gallery lightbox pagination shows images from all tabs<\\/li>\\n<li>Fix: &quot;Reply To&quot; option not working in Form widget &quot;Email 2&quot; Action<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<li>Fix: Underline option not working in Table of Contents widget Normal state<\\/li>\\n<li>Fix: Query Control <code>Undefined index: autocomplete<\\/code> notice in some cases<\\/li>\\n<li>Fix: Missing display condition to Read More Spacing control in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.8.2 - 2019-12-19<\\/h4>\\n<ul>\\n<li>Tweak: Improved scroll-spy and collapsing functionality in Table of Contents widget<\\/li>\\n<li>Fix: &quot;No products were found&quot; message not being displayed in an empty Products Archive<\\/li>\\n<li>Fix: Redundant <code>&lt;br&gt;<\\/code> tags in Single theme template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9927\\\">#9927<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9928\\\">#9928<\\/a>)<\\/li>\\n<li>Fix: Draft Popup shows up in Dynamic tag dropdown<\\/li>\\n<\\/ul>\\n<h4>2.8.1 - 2019-12-18<\\/h4>\\n<ul>\\n<li>Fix: Share Buttons widget not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9920\\\">#9920<\\/a>)<\\/li>\\n<li>Fix: Redundant <code>&lt;p&gt;<\\/code> tags added to Single Template posts<\\/li>\\n<\\/ul>\\n<h4>2.8.0 - 2019-12-18<\\/h4>\\n<ul>\\n<li>New: Table of Contents Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5171\\\">#5171<\\/a>)<\\/li>\\n<li>New: Added Font Awesome Pro Duotone font family support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added Lazy Load option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9763\\\">#9763<\\/a>)<\\/li>\\n<li>Tweak: Added Random order option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9269\\\">#9269<\\/a>)<\\/li>\\n<li>Tweak: Updated Font Awesome Pro to v5.11.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added preselect support for multiple default select values in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9324\\\">#9324<\\/a>)<\\/li>\\n<li>Tweak: Avoid duplicate queries for Custom Icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9579\\\">#9579<\\/a>)<\\/li>\\n<li>Tweak: Major performance improvements to Gallery widget<\\/li>\\n<li>Tweak: Avoid non-existing images in Gallery widget<\\/li>\\n<li>Tweak: Added <code>tabindex<\\/code>, <code>aria-expanded<\\/code>, <code>aria-hidden<\\/code> and <code>role=\\\"navigation\\\"<\\/code> accessibility attributes to Nav Menu widget<\\/li>\\n<li>Tweak: Changed button HTML tag from <code>button<\\/code> to <code>span<\\/code> in Call to Action and Flip Box widgets for better W3C compliance and accessibility<\\/li>\\n<li>Tweak: Removed Google+ from default networks in Share Buttons widget<\\/li>\\n<li>Tweak: Added compatibility for Library Connect<\\/li>\\n<li>Tweak: Added i18n to Toolset date dynamic tag<\\/li>\\n<li>Tweak: Added external link support to Gallery widget<\\/li>\\n<li>Tweak: Changed the link external attributes implementation to use <code>add_link_attributes()<\\/code> in Gallery widget<\\/li>\\n<li>Tweak: Updated references to the new Schemes system location<\\/li>\\n<li>Tweak: Avoid running Gallery handler when the gallery is empty<\\/li>\\n<li>Tweak: UI Tweaks in Editor Panel<\\/li>\\n<li>Tweak: Added responsive capabilities to Pointer Width control in Nav Menu widget<\\/li>\\n<li>Tweak: Added mobile support for responsive controls in Nav Menu widget<\\/li>\\n<li>Tweak: Refactor <code>register_controls()<\\/code> method in Posts widget skin trait<\\/li>\\n<li>Fix: ACF URL &quot;undefined Index&quot; notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7646\\\">#7646<\\/a>)<\\/li>\\n<li>Fix: WooCommerce Mini-Cart widget causes fatal error in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9304\\\">#9304<\\/a>)<\\/li>\\n<li>Fix: <code>PHP Notice: Undefined index<\\/code> display for Author query (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9864\\\">#9864<\\/a>)<\\/li>\\n<li>Fix: Added compatibility for Button widget placed inside Swiper carousel (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/broken-buttons-since-elementor-2-8\\/\\\">Topic<\\/a>)<\\/li>\\n<li>Fix: Avoid empty spaces in Post info widget<\\/li>\\n<li>Tweak: Always show &quot;Custom label&quot; control in Login widget<\\/li>\\n<li>Fix: Nav Menu item typography selector in Nav Menu widget<\\/li>\\n<li>Fix: Facebook Like Button widget causes flickering<\\/li>\\n<li>Fix: WooCommerce mini-cart behaviour when using <code>plain<\\/code> permalinks format<\\/li>\\n<li>Fix: Avoid running Popup triggers when set without conditions<\\/li>\\n<li>Fix: Removed &quot;Date&quot; query from Products widget<\\/li>\\n<li>Fix: Slides widget when used as a Shortcode and is hidden<\\/li>\\n<li>Fix: Custom URL being accessed on swipe in Media Carousel<\\/li>\\n<li>Fix: Media Carousel widget Cube effect glitch<\\/li>\\n<li>Fix: Lightbox shows images from multiple Gallery widgets in the same page<\\/li>\\n<li>Fix: Image <code>alt<\\/code> Text not displayed on overlay in Gallery widget<\\/li>\\n<li>Fix: Gallery widget not visible in Posts widget Full Content skin<\\/li>\\n<li>Fix: WooCommerce mini-cart remove unnecessary hooks registration when WooCommerce integration set to <code>Disable<\\/code><\\/li>\\n<li>Fix: Slides widget button wrapping breaks in mobile view<\\/li>\\n<li>Fix: Dynamic capabilities with the Reviews widget<\\/li>\\n<li>Fix: Disabling autoplay doesn\'t work in Slides widget<\\/li>\\n<li>Fix: Posts widget Full Content skin not working on Single template<\\/li>\\n<li>Fix: Autocomplete not working for &quot;By Author&quot; condition in Display Conditions screen<\\/li>\\n<li>Fix: Posts widget alignment issue<\\/li>\\n<li>Fix: Product Variations Clear button not working in edge cases<\\/li>\\n<li>Fix: Styling issues in Form widget submit button<\\/li>\\n<\\/ul>\\n<h4>2.7.3 - 2019-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added RTL support to Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9213\\\">#9213<\\/a>)<\\/li>\\n<li>Tweak: Added Custom Icons compatibility for WordPress 5.3<\\/li>\\n<li>Fix: Missing template function declaration causes fatal error in WC mini-cart widget<\\/li>\\n<li>Fix: Pause on hover doesn\'t work in Carousel widgets<\\/li>\\n<li>Fix: Link-actions conflict with <code>?action=<\\/code> parameter in the URL<\\/li>\\n<li>Fix: Lightbox navigation not working in Gallery widget Single mode<\\/li>\\n<li>Fix: Ken burns effect not working on the 1st slide if Infinite Loop option is turned off in Carousel widgets<\\/li>\\n<li>Fix: Popup Advanced Rules detects internal links as external if current URL starts with <code>www<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.7.2 - 2019-10-06<\\/h4>\\n<ul>\\n<li>Fix: Slide Overlay not working when applying Ken burns effect in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9209\\\">#9209<\\/a>)<\\/li>\\n<li>Fix: Content width glitch in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Horizontal Alignment not working when applying custom style per slide in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Missing semicolon in Custom Fonts <code>font-display<\\/code> CSS<\\/li>\\n<\\/ul>\\n<h4>2.7.1 - 2019-09-26<\\/h4>\\n<ul>\\n<li>Fix: Background Overlay layer is over the slide content in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Duplicate images under &quot;All&quot; filter in Multiple Gallery<\\/li>\\n<\\/ul>\\n<h4>2.7.0 - 2019-09-24<\\/h4>\\n<ul>\\n<li>New: Enhanced Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1898\\\">#1898<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3103\\\">#3103<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4279\\\">#4279<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7631\\\">#7631<\\/a>)<\\/li>\\n<li>New: Dynamic Number (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5952\\\">#5952<\\/a>)<\\/li>\\n<li>New: Full content skin for Posts and Archive-posts widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4617\\\">#4617<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic number capability to Price List, Price Table, Counter, Star Rating, Progress Bar widgets<\\/li>\\n<li>Tweak: Added tags support to forms Mailchimp action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5418\\\">#5418<\\/a>)<\\/li>\\n<li>Tweak: User Profile Picture Dynamic Tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7947\\\">#7947<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8740\\\">#8740<\\/a>)<\\/li>\\n<li>Tweak: Added <code>font-display<\\/code> support to custom fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5993\\\">#5993<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-custom-fonts-font-display-support\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Text Shadow control to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8800\\\">#8800<\\/a>)<\\/li>\\n<li>Tweak: Added Re-subscribe support to MailerLite (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8799\\\">#8799<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Facebook Embed widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9030\\\">#9030<\\/a>)<\\/li>\\n<li>Tweak: Use <code>swiper.js<\\/code> instead of <code>slick.js<\\/code> in Slides widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-2-7-moving-sliders-from-slick-to-swiper\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/before_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/after_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic support for Custom field key (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7789\\\">#7789<\\/a>)<\\/li>\\n<li>Tweak: Increased expired license notice bar frequency<\\/li>\\n<li>Tweak: Changed the icon name of Slides widget<\\/li>\\n<li>Tweak: Added designated Finder\'s Icons for Custom icons &amp; Custom fonts<\\/li>\\n<li>Tweak: Use Ken Burns Effect as an external module<\\/li>\\n<li>Tweak: Remove Fontello conflicting CSS on import to Custom Icons sets<\\/li>\\n<li>Tweak: Editor Panel UI tweaks<\\/li>\\n<li>Tweak: Added DOM events on Popup show\\/hide (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-popup-events\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added option to change the variations field width in Add to Cart widget<\\/li>\\n<li>Tweak: Use select control instead of select2 in Menu Cart widget<\\/li>\\n<li>Tweak: Added conditions to the tabs instead of to each control in Share Buttons widget<\\/li>\\n<li>Tweak: Added Typography controls to HTML field in Forms widget<\\/li>\\n<li>Tweak: Allow edit selected Font file in Custom Font<\\/li>\\n<li>Tweak: Changed reCAPTCHA v3 error message<\\/li>\\n<li>Tweak: Remove the &quot;Save as Global&quot; option on Global widget context menu<\\/li>\\n<li>Fix: Corrected selector for <code>removeControlSpinner()<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8790\\\">#8790<\\/a>)<\\/li>\\n<li>Fix: Slides widget navigation icons misplacement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8533\\\">#8533<\\/a>)<\\/li>\\n<li>Fix: Horizontal Scrollbar when Slider widget is set to Full Width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8527\\\">#8527<\\/a>)<\\/li>\\n<li>Fix: Inconsistent behavior when &quot;Infinite Loop&quot; enabled with &quot;Autoplay&quot; in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Ken Burns effect on Chrome transition glitches (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1671\\\">#1671<\\/a>)<\\/li>\\n<li>Fix: Nothing found message shows up inside the columns set in Posts Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7347\\\">#7347<\\/a>)<\\/li>\\n<li>Fix: Responsive UI glitch in Popup Conditions modal tabs<\\/li>\\n<li>Fix: Removed unnecessary divider in Call to Action widget<\\/li>\\n<li>Fix: Custom Add To Cart * button style (size, position and background color) when <code>quantity<\\/code> is enabled.<\\/li>\\n<li>Fix: Add support for Document\\/PageBase in Theme Builder (Core &gt;=2.7.0)<\\/li>\\n<li>Fix: Ampersand character breaks email link in Share Buttons widget<\\/li>\\n<li>Fix: Correct custom font attachment <code>mime-type<\\/code> to show uploaded Custom Fonts<\\/li>\\n<li>Fix: Mini-Cart not refreshing in Menu Cart widget<\\/li>\\n<li>Fix: Cart drawer not working when WC Subscriptions plugin is activated<\\/li>\\n<li>Fix:  Querying CPT with custom taxonomies does not show the taxonomies before saving<\\/li>\\n<li>Fix: Double rendering on change caused console error in Theme Builder\'s conditions screen<\\/li>\\n<li>Fix: Translations and Strings in Share Buttons widget<\\/li>\\n<li>Fix: Avoid using offset if the source is Manual selection in Query Control<\\/li>\\n<li>Fix: Form being submitted although reCAPTCHA v3 validation failed in Forms widget<\\/li>\\n<\\/ul>\\n<h4>2.6.5 - 2019-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Button style not working when <code>quantity<\\/code> is enabled in Custom Add To Cart widget<\\/li>\\n<li>Fix: Updated minified JS file fixed WhatsApp base URL in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>2.6.4 - 2019-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Changed WhatsApp base URL in Share Buttons widget for cross-device compatibility<\\/li>\\n<li>Fix: Random slides order after several clicks on pagination in Testimonial Carousel widget<\\/li>\\n<\\/ul>\\n<h4>2.6.3 - 2019-08-18<\\/h4>\\n<ul>\\n<li>Fix: Core version rollback to <code>&gt;2.6.0<\\/code> causes a fatal error<\\/li>\\n<li>Fix: Duplicate images when slideshow skin is selected in Media Carousel lightbox<\\/li>\\n<li>Fix: Default bottom margin added to reCAPTCHA V3 badge<\\/li>\\n<li>Fix: Input glitch in reCAPTCHA V3 threshold settings<\\/li>\\n<\\/ul>\\n<h4>2.6.2 - 2019-07-30<\\/h4>\\n<ul>\\n<li>Tweak: Better accessibility support in Search Form widget<\\/li>\\n<li>Fix: UI glitched in Popup publish screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8616\\\">#8616<\\/a>)<\\/li>\\n<li>Fix: &quot;Child of Term&quot; and &quot;Any child of term&quot; conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8695\\\">#8695<\\/a>)<\\/li>\\n<li>Fix: Restored <code>library_widget_templates<\\/code> action hook for 3rd party compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8687\\\">#8687<\\/a>)<\\/li>\\n<li>Fix: Twitter Icon missing in Blockquote widget<\\/li>\\n<li>Fix: Form reCAPTCHA v3 badge position not working<\\/li>\\n<li>Fix: Renewal notice bar appears in wrong situations<\\/li>\\n<li>Fix: Draft Icon Set loads empty Icon Library<\\/li>\\n<\\/ul>\\n<h4>2.6.1 - 2019-07-24<\\/h4>\\n<ul>\\n<li>Fix: Query Control autocomplete not retrieving results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8672\\\">#8672<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8661\\\">#8661<\\/a>)<\\/li>\\n<li>Fix: Price Table features section not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8660\\\">#8660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.6.0 - 2019-07-23<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Icon sets - including Fontello, IcoMoon and Fontastic support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/110\\\">#110<\\/a>)<\\/li>\\n<li>New: Added Font Awesome 5 Pro integration including 5,300+ icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4430\\\">#4430<\\/a>)<\\/li>\\n<li>New: Added reCAPTCHA v3 integration to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8213\\\">#8213<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6039\\\">#6039<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7165\\\">#7165<\\/a>)<\\/li>\\n<li>Tweak: Added Exit Animation for Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7063\\\">#7063<\\/a>)<\\/li>\\n<li>Tweak: Added ACF Dynamic tag support for archive pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5147\\\">#5147<\\/a>)<\\/li>\\n<li>Tweak: Added Navigator Indicators for Custom CSS &amp; Motion Effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2180\\\">#2180<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Form Redirect action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7552\\\">#7552<\\/a>)<\\/li>\\n<li>Tweak: Added Logged In Message styling options for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7928\\\">#7928<\\/a>)<\\/li>\\n<li>Tweak: Added <code>none<\\/code> breakpoint option to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7916\\\">#7916<\\/a>)<\\/li>\\n<li>Tweak: Added option to place Post Terms dynamic tag without links (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8366\\\">#8366<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor\\/query\\/query_results<\\/code> hook to Query Control to allow full control over results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7912\\\">#7912<\\/a>)<\\/li>\\n<li>Tweak: Allow choosing Heading HTML tag in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8090\\\">#8090<\\/a>)<\\/li>\\n<li>Tweak: Show popup on dynamic click even when <code>Avoid Multiple Popups<\\/code> option is selected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8189\\\">#8189<\\/a>)<\\/li>\\n<li>Tweak: Added condition option to all of archive child pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8256\\\">#8256<\\/a>)<\\/li>\\n<li>Tweak: Added <code>Effects Relative To<\\/code> control to Scrolling Effects<\\/li>\\n<li>Tweak: Allow shortcodes in HTML Form field<\\/li>\\n<li>Tweak: Removed donReach integration from Share Buttons widget due to service inconsistent stability<\\/li>\\n<li>Tweak: Changed MailChimp <code>List<\\/code> label to <code>Audience<\\/code><\\/li>\\n<li>Tweak: Improved Entrance and Exit animation behavior in Popup<\\/li>\\n<li>Tweak: Added <code>Deprecated Notice<\\/code> control to <code>Archive Products<\\/code> and <code>Woo Products<\\/code> widgets<\\/li>\\n<li>Tweak: Added default dynamic title for archives in Theme Builder<\\/li>\\n<li>Tweak: Added condition to show <code>Centered Slides<\\/code> control in Media Carousel widget<\\/li>\\n<li>Tweak: Added notice bar in the Editor when the license is expired or not activated<\\/li>\\n<li>Tweak: Replaced <code>select<\\/code> control with <code>choose<\\/code> control in Price List widget<\\/li>\\n<li>Tweak: Removed Font Awesome 4 dependencies from the Editor<\\/li>\\n<li>Tweak: Minor styling tweaks in the Popup publish modal<\\/li>\\n<li>Tweak: Hide ordering form in Products widget on front page<\\/li>\\n<li>Tweak: Removed page title markup when \'Hide Title\' is active<\\/li>\\n<li>Tweak: Added style controls for HTML field in Form widget<\\/li>\\n<li>Fix: Form widget Date picker makes the Popup builder disappear (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7240\\\">#7240<\\/a>)<\\/li>\\n<li>Fix: Sticky element stop point stops working on viewport resize (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7884\\\">#7884<\\/a>)<\\/li>\\n<li>Fix: Copy-Paste style not pasting the Pointer option in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8497\\\">#8497<\\/a>)<\\/li>\\n<li>Fix: Missing Print icon in Share Buttons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8506\\\">#8506<\\/a>)<\\/li>\\n<li>Fix: UI style glitch in Blockquote widget when viewing from iPad<\\/li>\\n<li>Deprecated: <code>DB::save_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<li>Deprecated: <code>DB::get_plain_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.14 - 2019-07-14<\\/h4>\\n<ul>\\n<li>Fix: Better WC Related Product grid support to various themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8555\\\">#8555<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.13 - 2019-07-11<\\/h4>\\n<ul>\\n<li>Fix: Better WC grid support to various themes<\\/li>\\n<\\/ul>\\n<h4>2.5.12 - 2019-07-10<\\/h4>\\n<ul>\\n<li>Fix: Grid for WooCommerce Archive Product widget<\\/li>\\n<li>Fix: Remove redundant <code>whitespace<\\/code> CSS property causes style glitch in iPad<\\/li>\\n<li>Tweak: Added more compatibility for Elementor v2.6<\\/li>\\n<\\/ul>\\n<h4>2.5.11 - 2019-07-02<\\/h4>\\n<ul>\\n<li>Fix: Close icon missing from Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8460\\\">#8460<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro v2.5.10 shows PHP notice regarding notice bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8461\\\">#8461<\\/a>)<\\/li>\\n<li>Fix: Fatal error when deleting used Pods fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8396\\\">#8396<\\/a>)<\\/li>\\n<li>Fix: Missing dropdown icon in conditions screen<\\/li>\\n<\\/ul>\\n<h4>2.5.10 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.6<\\/li>\\n<li>Tweak: Error caused by empty Rows &amp; Columns values in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8261\\\">#8261<\\/a>)<\\/li>\\n<li>Fix: Do not unset <code>product<\\/code> CPT if it\'s not from WooCommerce (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8160\\\">#8160<\\/a>)<\\/li>\\n<li>Fix: Column Spacing not working in WooCommerce Archive Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8285\\\">#8285<\\/a>)<\\/li>\\n<li>Fix: Title styling not working in Products Categories widget<\\/li>\\n<li>Fix: Empty value in Dynamic Pods Gallery dropdown using Safari browser<\\/li>\\n<li>Fix: WooCommerce archives included in &quot;All Archives&quot; condition<\\/li>\\n<\\/ul>\\n<h4>2.5.9 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>auto-confirm<\\/code> control from MailPoet to support new version of MailPoet<\\/li>\\n<li>Fix: Multiple Custom Fonts not rendered in the editor<\\/li>\\n<li>Fix: Products <code>sale<\\/code> query - handle exclude by manual selection.<\\/li>\\n<li>Fix: Product Categories grid row &amp; column style<\\/li>\\n<li>Fix: Form integration AJAX cache override<\\/li>\\n<li>Fix: Removed redundant CSS on Canvas &amp; Header-Footer page templates<\\/li>\\n<\\/ul>\\n<h4>2.5.8 - 2019-05-06<\\/h4>\\n<ul>\\n<li>Fix: Popup entrance animation not working in frontend<\\/li>\\n<li>Fix: Popup Exit Intent trigger activated multiple times<\\/li>\\n<\\/ul>\\n<h4>2.5.7 - 2019-05-05<\\/h4>\\n<ul>\\n<li>Fix: Embedded video keeps playing after a Popup is closed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7875\\\">#7875<\\/a>)<\\/li>\\n<li>Fix: Maximum call stack size exceeded error in Safari (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7824\\\">#7824<\\/a>)<\\/li>\\n<li>Fix: Entrance animations not appearing on Popup reopen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7395\\\">#7395<\\/a>)<\\/li>\\n<li>Fix: WC variations select style glitch in several themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8008\\\">#8008<\\/a>)<\\/li>\\n<li>Fix: Theme Builder taxonomy conditions not retrieving proper results in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.5.6 - 2019-04-29<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>Shortcode<\\/code> dynamic from Image, Gallery and Media control<\\/li>\\n<li>Fix: Popup not inheriting entrance animation in responsive mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7809\\\">#7809<\\/a>)<\\/li>\\n<li>Fix: Terms autocomplete retrieves wrong results in Query Control<\\/li>\\n<li>Fix: Query Control Related by author glitches in edge cases<\\/li>\\n<li>Fix: Query Control using terms for Products widget<\\/li>\\n<li>Fix: Posts cards style glitch in small screens<\\/li>\\n<li>Fix: Display conditions delete icon missing in small screens<\\/li>\\n<li>Fix: Avoid rendering Menu Cart widget in WordPress native editor<\\/li>\\n<\\/ul>\\n<h4>2.5.5 - 2019-04-08<\\/h4>\\n<ul>\\n<li>Tweak: Allow text selection inside a Popup<\\/li>\\n<li>Fix: Added backwards compatibility for <code>tax_query<\\/code> in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7751\\\">#7751<\\/a>)<\\/li>\\n<li>Fix: Missing arguments for <code>widget_title<\\/code> filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7745\\\">#7745<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.4 - 2019-04-03<\\/h4>\\n<ul>\\n<li>Fix: Move Query from using <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<li>Fix: Offset manipulation hook removal in Query control<\\/li>\\n<li>Fix: Missing form field <code>ID<\\/code> in some edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7711\\\">#7711<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7660\\\">#7660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.3 - 2019-03-31<\\/h4>\\n<ul>\\n<li>Tweak: Updated Google Calendar dynamic tag URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7673\\\">#7673<\\/a>)<\\/li>\\n<li>Fix: Missing form field names (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7651\\\">#7651<\\/a>)<\\/li>\\n<li>Fix: PHP 5.4 backward compatibility in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7633\\\">#7633<\\/a>)<\\/li>\\n<li>Fix: <code>products_deprecated<\\/code> Query Control module compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7654\\\">#7654<\\/a>)<\\/li>\\n<li>Fix: Changed query method from <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.2 - 2019-03-27<\\/h4>\\n<ul>\\n<li>Fix: Overwrite parent widget type in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7632\\\">#7632<\\/a>)<\\/li>\\n<li>Fix: Avoid Duplicates option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7635\\\">#7635<\\/a>)<\\/li>\\n<li>Fix: Manual Selection option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7634\\\">#7634<\\/a>)<\\/li>\\n<li>Fix: Incorrect condition caused handlers issues inside popup<\\/li>\\n<\\/ul>\\n<h4>2.5.1 - 2019-03-26<\\/h4>\\n<ul>\\n<li>Fix: Query Control invalid call to deprecated action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7619\\\">#7619<\\/a>)<\\/li>\\n<li>Tweak: Renamed action hook from <code>elementor_pro\\/{$widget_name}\\/query\\/{$query_id}<\\/code> to <code>elementor\\/query\\/{$query_id}<\\/code><\\/li>\\n<li>Tweak: Renamed filter hook from <code>elementor_pro\\/query_control\\/get_query_args\\/current_query<\\/code> to <code>elementor\\/query\\/get_query_args\\/current_query<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.5.0 - 2019-03-26<\\/h4>\\n<ul>\\n<li>New: Introducing Motion Effects including Scrolling &amp; Mouse effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/72\\\">#72<\\/a>)<\\/li>\\n<li>New: Introducing Related Posts for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7306\\\">#7306<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7490\\\">#7490<\\/a>)<\\/li>\\n<li>New: Introducing Date query for Query Control<\\/li>\\n<li>New: Introducing Sticky Posts support for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2501\\\">#2501<\\/a>)<\\/li>\\n<li>Tweak: Added option to open a Popup by a custom selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6871\\\">#6871<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6876\\\">#6876<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Option to count when Popup is closed in &quot;Show up to X times&quot; Advanced Rule<\\/li>\\n<li>Tweak: Added full border radius control options inside Popup<\\/li>\\n<li>Tweak: Changed exit intent icon in Popups<\\/li>\\n<li>Tweak: Show only one popup in its own preview<\\/li>\\n<li>Tweak: Added responsive support to Popup entrance animation control<\\/li>\\n<li>Tweak: Conditions - Singular <code>All Pages<\\/code> string changed to <code>Pages<\\/code><\\/li>\\n<li>Tweak: Added form field shortcode support for Drip tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7000\\\">#7000<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6779\\\">#6779<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6986\\\">#6986<\\/a>)<\\/li>\\n<li>Tweak: Decrease <code>z-index<\\/code> for Nav Menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6869\\\">#6869<\\/a>)<\\/li>\\n<li>Tweak: Changed &quot;Scrolling Effects&quot; section label to &quot;Motion Effects&quot;<\\/li>\\n<li>Tweak: Use filter <code>get_meta_viewport<\\/code> for header templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7043\\\">#7043<\\/a>)<\\/li>\\n<li>Tweak: use filterable <code>Util::get_public_post_types()<\\/code> in Theme Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7172\\\">#7172<\\/a>)<\\/li>\\n<li>Tweak: Added Cloudflare rocket-loader support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7443\\\">#7443<\\/a>)<\\/li>\\n<li>Tweak: Added responsive support to WC Products Columns &amp; Rows Gap controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6913\\\">#6913<\\/a>)<\\/li>\\n<li>Tweak: WC Menu cart &quot;View Cart&quot; &amp; &quot;Checkout&quot; buttons styling<\\/li>\\n<li>Fix: Custom ID reset to default when dragging repeater<\\/li>\\n<li>Fix: Conflict between archive-products widget and WC customizer<\\/li>\\n<li>Fix: Add to Cart widget <code>spacing<\\/code> and <code>space-between<\\/code><\\/li>\\n<li>Fix: Library view when creating a new Header or Footer<\\/li>\\n<li>Fix: Post types labels missing on Add New Template modal<\\/li>\\n<\\/ul>\\n<h4>2.4.8 - 2019-03-11<\\/h4>\\n<ul>\\n<li>Fix: Missing query section in Products widget<\\/li>\\n<li>Fix: Missing Taxonomy controls in Products widget in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.7 - 2019-03-06<\\/h4>\\n<ul>\\n<li>Fix: Compatibility Global Widget with Elementor v2.5.0+<\\/li>\\n<\\/ul>\\n<h4>2.4.6 - 2019-03-04<\\/h4>\\n<ul>\\n<li>Fix: Pods gallery dynamic when empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7127\\\">#7127<\\/a>)<\\/li>\\n<li>Fix: Duplicate call for conditions screen issue<\\/li>\\n<li>Fix: Compatibility with Elementor v2.5.0<\\/li>\\n<\\/ul>\\n<h4>2.4.5 - 2019-02-18<\\/h4>\\n<ul>\\n<li>Fix: Image size issue in Testimonial Carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7058\\\">#7058<\\/a>)<\\/li>\\n<li>Fix: MailChimp groups not saved in a form integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7083\\\">#7083<\\/a>)<\\/li>\\n<li>Fix: Show popup preview only on it\'s own preview<\\/li>\\n<li>Fix: Elementor dashboard templates URL corrupted links in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.4 - 2019-02-11<\\/h4>\\n<ul>\\n<li>Tweak: Added ACF Date Time Picker field support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6690\\\">#6690<\\/a>)<\\/li>\\n<li>Tweak: Changed the term of <code>All Posts<\\/code> condition to <code>Posts<\\/code><\\/li>\\n<li>Fix: Added <code>&lt;IfModule&gt;<\\/code> to avoid 500 error when <code>mod-headers<\\/code> is missing (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7034\\\">#7034<\\/a>)<\\/li>\\n<li>Fix: Include post CSS deletion in Global Widget update (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6856\\\">#6856<\\/a>)<\\/li>\\n<li>Fix: <code>Textarea<\\/code> default value in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6934\\\">#6934<\\/a>)<\\/li>\\n<li>Fix: MailPoet latest version caused fatal error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6996\\\">#6996<\\/a>)<\\/li>\\n<li>Fix: Fatal Error caused by calling MailPoet deleted method<\\/li>\\n<li>Notice: MailPoet <code>Auto Confirm<\\/code> option will now default to &quot;On&quot;<\\/li>\\n<\\/ul>\\n<h4>2.4.3 - 2019-01-30<\\/h4>\\n<ul>\\n<li>Fix: Custom Add to Cart widget responsive alignment settings<\\/li>\\n<li>Fix: Links in Post Info widget<\\/li>\\n<li>Fix: WooCommerce <code>View Cart<\\/code> string translate<\\/li>\\n<li>Fix: Wrapper classes for header\\/footer templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6884\\\">#6884<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.4.2 - 2019-01-25<\\/h4>\\n<ul>\\n<li>Tweak: Added pixel units to Close Button position control in Popups<\\/li>\\n<li>Fix: Exclude error in WC Products widget<\\/li>\\n<\\/ul>\\n<h4>2.4.1 - 2019-01-24<\\/h4>\\n<ul>\\n<li>Tweak: Added CSS classes control to Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6826\\\">#6826<\\/a>)<\\/li>\\n<li>Tweak: Added responsive image size to Testimonial Carousel widget<\\/li>\\n<li>Fix: PHP warning when Toolset Date dynamic is empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6842\\\">#6842<\\/a>)<\\/li>\\n<li>Fix: Support of exclude-ids in WC Products widget<\\/li>\\n<li>Fix: Popup close button not clickable<\\/li>\\n<li>Fix: Alignment justify issue of Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6749\\\">#6749<\\/a>)<\\/li>\\n<li>Fix: Bad anchors breaks the page JS<\\/li>\\n<li>Fix: Popup overlay shown when turned off<\\/li>\\n<\\/ul>\\n<h4>2.4.0 - 2019-01-21<\\/h4>\\n<ul>\\n<li>New: Introducing Popup Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/628\\\">#628<\\/a>)<\\/li>\\n<li>New: Added <code>Popup<\\/code> Dynamic Tag<\\/li>\\n<li>New: Added <code>Popup<\\/code> forms action after submit<\\/li>\\n<li>New: Added User Info dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6322\\\">#6322<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for &quot;Nothing Found&quot; message<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/theme_builder\\/archive\\/escape_nothing_found_message<\\/code> Filter to avoid HTML escaping in &quot;Nothing Found&quot; message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6053\\\">#6053<\\/a>)<\\/li>\\n<li>Tweak: Added <code>add_doc_to_location<\\/code> method to Allow insertion of a document to a location<\\/li>\\n<li>Fix: <code>z-index<\\/code> issue with CTA widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6486\\\">#6486<\\/a>)<\\/li>\\n<li>Fix: Hide the Post Content widget and show it only in a Single document<\\/li>\\n<li>Fix: <code>selector<\\/code> replacement in Custom CSS<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> on the real content only<\\/li>\\n<li>Fix: CSS for WC products selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6559\\\">#6559<\\/a>)<\\/li>\\n<li>Fix: Odnoklassniki share URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6638\\\">#6638<\\/a>)<\\/li>\\n<li>Fix: Custom link new tab in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5766\\\">#5766<\\/a>)<\\/li>\\n<li>Fix: <code>nofollow<\\/code> link in Flip Box &amp; CTA widgets<\\/li>\\n<li>Fix: Post Terms in Post Info widget<\\/li>\\n<li>Fix: Added screen reader to some icons &amp; buttons for better accessibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5386\\\">#5386<\\/a>)<\\/li>\\n<li>Fix: Accessibility labels in Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6630\\\">#6630<\\/a>)<\\/li>\\n<li>Fix: Link to cart page not working when WooCommerce Subscriptions is active<\\/li>\\n<li>Fix: MailChimp Selected list not showing on reloading in Form widget<\\/li>\\n<li>Fix: Sub-menu arrow position in Nav Menu widget<\\/li>\\n<li>Fix: Conflict with WP Security Audit Log plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6648\\\">#6648<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.3.1 - 2018-12-19<\\/h4>\\n<ul>\\n<li>Fix: Template widget search functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6473\\\">#6473<\\/a>)<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> filter to post content in theme builder<\\/li>\\n<\\/ul>\\n<h4>2.3.0 - 2018-12-17<\\/h4>\\n<ul>\\n<li>New: Introducing Discord Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4218\\\">#4218<\\/a>)<\\/li>\\n<li>New: Introducing Slack Integration for Forms<\\/li>\\n<li>New: Introducing MailerLite Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4462\\\">#4462<\\/a>)<\\/li>\\n<li>New: Activate Elementor Pro plugin by connecting to Elementor account<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/utils\\/get_public_post_types<\\/code> filter hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5900\\\">#5900<\\/a>)<\\/li>\\n<li>Tweak: Added <code>loop_start<\\/code> &amp; <code>the_content<\\/code> hooks for Post Content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6173\\\">#6173<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from Page Settings<\\/li>\\n<li>Tweak: Always add the Custom CSS control to the Advanced tab<\\/li>\\n<li>Fix: In sub Term condition false positive in edge cases<\\/li>\\n<li>Fix: ToolSet Dynamic Image fallback<\\/li>\\n<li>Fix: Style glitch with the dropdown color in Nav Menu widget<\\/li>\\n<li>Fix: Style glitch in the Conditions screen in Safari browser<\\/li>\\n<li>Fix: Ribbon in the CTA widget obscures drop down menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6080\\\">#6080<\\/a>)<\\/li>\\n<li>Fix: The color of label won\'t change color in Widget login<\\/li>\\n<\\/ul>\\n<h4>2.2.5 - 2018-12-11<\\/h4>\\n<ul>\\n<li>New: Add Style Tab &amp; Custom CSS for Header &amp; Footer Templates.<\\/li>\\n<li>Tweak: Added a better identifier for subpages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6362\\\">#6362<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from page settings<\\/li>\\n<li>Fix: Yahoo event URL date issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Allow timezone settings in Google event URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Avoid <code>z-index<\\/code> changes by <code>nanocss<\\/code> in build process<\\/li>\\n<li>Fix: Added missing WC upsells products CSS<\\/li>\\n<li>Fix: Nav Menu dropdown losing color on hover<\\/li>\\n<li>Fix: WC Product Add-ons CSS compatibility<\\/li>\\n<\\/ul>\\n<h4>2.2.4 - 2018-12-04<\\/h4>\\n<ul>\\n<li>Fix: Global widget not saving changes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6340\\\">#6340<\\/a>)<\\/li>\\n<li>Fix: Dynamic tags support in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6334\\\">#6334<\\/a>)<\\/li>\\n<li>Fix: Forms Redirect URL action when using form field values with spaces<\\/li>\\n<\\/ul>\\n<h4>2.2.3 - 2018-11-29<\\/h4>\\n<ul>\\n<li>Fix: Missing &quot;Edit Template&quot; in Template widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Follow menu anchors with UTF8 characters in Nav Menu<\\/li>\\n<li>Fix: Show only supported templates in Template widget<\\/li>\\n<li>Fix: Revert conflicting fix for a default order for WC archive<\\/li>\\n<\\/ul>\\n<h4>2.2.2 - 2018-11-28<\\/h4>\\n<ul>\\n<li>Fix: Lightbox dynamic tag crashes the editor<\\/li>\\n<\\/ul>\\n<h4>2.2.1 - 2018-11-28<\\/h4>\\n<ul>\\n<li>New: Added <code>ACF File<\\/code> Dynamic tag to support text controls.<\\/li>\\n<li>Tweak: Added option to hide item count bubble when cart is empty in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6223\\\">#6223<\\/a>)<\\/li>\\n<li>Tweak: Added Actions group for Lightbox and Contact URL tags<\\/li>\\n<li>Tweak: Added filter <code>elementor_pro\\/dynamic_tags\\/shortcode\\/should_escape<\\/code> to avoid escaping in Shortcode dynamic tag<\\/li>\\n<li>Tweak: MailPoet3 integration allow Subscriber to to subscribe to multiple lists<\\/li>\\n<li>Tweak: Added front-end max file size validation for upload fields<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> per Post-Type condition for theme builder<\\/li>\\n<li>Fix: Template widget panel not showing the selected template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Conflict between ACF with Safari browser on Select option in Dynamic tag<\\/li>\\n<li>Fix: Add post classes only for the Single template<\\/li>\\n<li>Fix: Set document type as not editable for unsupported document like Global widget<\\/li>\\n<li>Fix: Avoid duplicate query for current WC product query<\\/li>\\n<li>Fix: Product Archive showing oldest products instead of latest<\\/li>\\n<li>Fix: CSS reset in Posts widget using cards skin<\\/li>\\n<\\/ul>\\n<h4>2.2.0 - 2018-11-19<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/290\\\">#290<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3990\\\">#3990<\\/a>)<\\/li>\\n<li>New: Added evergreen option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4459\\\">#4459<\\/a>)<\\/li>\\n<li>New: Added expire actions option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5242\\\">#5242<\\/a>)<\\/li>\\n<li>New: Introducing Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3854\\\">#3854<\\/a>)<\\/li>\\n<li>New: Introducing Sitemap widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5594\\\">#5594<\\/a>)<\\/li>\\n<li>New: Added Request Parameter dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4934\\\">#4934<\\/a>)<\\/li>\\n<li>New: Added Shortcode dynamic tag<\\/li>\\n<li>New: Added Image and Video Lightbox dynamic tag<\\/li>\\n<li>New: Added Contact URL dynamic tag<\\/li>\\n<li>New: Added Featured Image Data dynamic tag<\\/li>\\n<li>New: Added default value to each field in the Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4268\\\">#4268<\\/a>)<\\/li>\\n<li>New: Added &quot;Any Child Of&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5321\\\">#5321<\\/a>)<\\/li>\\n<li>New: Added &quot;In Child&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5587\\\">#5587<\\/a>)<\\/li>\\n<li>Tweak: Added Form Redirect URL with form values (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2564\\\">#2564<\\/a>)<\\/li>\\n<li>Tweak: Added default post classes to template wrapper (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5959\\\">#5959<\\/a>)<\\/li>\\n<li>Tweak: Better labels for terms in Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6092\\\">#6092<\\/a>)<\\/li>\\n<li>Tweak: Renamed &quot;Child Of&quot; templates condition to &quot;Direct Child Of&quot;<\\/li>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/condition_sub_id<\\/code> filter hook to allow template condition translations<\\/li>\\n<li>Tweak: Load the Template Library widget via Ajax for better performance<\\/li>\\n<li>Tweak: Added 404 page title for Page Title dynamic tag<\\/li>\\n<li>Fix: Menu Cart Toggle has # URL link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6141\\\">#6141<\\/a>)<\\/li>\\n<li>Fix: Alignment issue in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5790\\\">#5790<\\/a>)<\\/li>\\n<li>Fix: Avoid potential security risk in forms<\\/li>\\n<li>Fix: Template By Author condition conflicts with 404 page<\\/li>\\n<li>Fix: Restored WC Product Content widget in Single Product template<\\/li>\\n<li>Fix: Theme Builder Preview URLs for date archives and 404 pages<\\/li>\\n<li>Fix: Highlight active menu anchor items only when scrolled into view<\\/li>\\n<li>Fix: Carousel Pagination Progress style to support new Swiper version<\\/li>\\n<\\/ul>\\n<h4>2.1.13 - 2018-11-12<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for new brand Finder in v2.3.0<\\/li>\\n<li>Fix: Settings conflict when there are multiple carousels in the page<\\/li>\\n<\\/ul>\\n<h4>2.1.12 - 2018-11-05<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.3<\\/li>\\n<li>Tweak: Better performance for Template Library widget<\\/li>\\n<li>Fix: Fatal error if a taxonomy used in a dynamic field is removed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6029\\\">#6029<\\/a>)<\\/li>\\n<li>Fix: Date Time dynamic tag now respect site language (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6001\\\">#6001<\\/a>)<\\/li>\\n<li>Fix: Custom CSS printed twice in the front-end<\\/li>\\n<li>Fix: ACF Image field PHP warning (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6051\\\">#6051<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.1.11 - 2018-10-22<\\/h4>\\n<ul>\\n<li>New: Added ACF local fields compatibility<\\/li>\\n<li>Tweak: Re-brand TypeKit by Adobe Fonts integration<\\/li>\\n<li>Fix: Exclude <code>is_embed<\\/code> from Singular condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5915\\\">#5915<\\/a>)<\\/li>\\n<li>Fix: Avoid conflict with Ad Blockers and Share Buttons<\\/li>\\n<li>Fix: Current date time dynamic tag now shows local time<\\/li>\\n<li>Fix: Avoid conflict with 3rd party plugins that filter the permalink<\\/li>\\n<li>Fix: Avoid PHP warning when no groups are selected for MailChimp integration<\\/li>\\n<li>Fix: Avoid PHP warning if checkbox field is empty for ACF<\\/li>\\n<li>Fix: Respect password protected for a WC single product template<\\/li>\\n<li>Fix: Respect <code>order<\\/code> settings for WC archive also without pagination<\\/li>\\n<\\/ul>\\n<h4>2.1.10 - 2018-10-09<\\/h4>\\n<ul>\\n<li>Tweak: Added responsive alignment control for Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5821\\\">#5821<\\/a>)<\\/li>\\n<li>Tweak: Added link control to Animated Headline widget<\\/li>\\n<li>Fix: Mobile nav menu jump on RTL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5711\\\">#5711<\\/a>)<\\/li>\\n<li>Fix: Responsive alignment control in Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5830\\\">#5830<\\/a>)<\\/li>\\n<li>Fix: Added IE compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Post Content widget is now shown only on <code>Single<\\/code> templates<\\/li>\\n<li>Fix: Query Control Pagination with offset<\\/li>\\n<\\/ul>\\n<h4>2.1.9 - 2018-09-17<\\/h4>\\n<ul>\\n<li>Tweak: Added Centered Slides option for Slideshow carousel<\\/li>\\n<li>Fix: Allow only public CPT for Manual Selection in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5091\\\">#5091<\\/a>)<\\/li>\\n<li>Fix: ACF Gallery option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: Page scrolling on resize when sticky is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5740\\\">#5740<\\/a>)<\\/li>\\n<li>Fix: Edit custom name for Global Widget in the Navigator (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5689\\\">#5689<\\/a>)<\\/li>\\n<li>Fix: Coverflow transition effect in Carousel<\\/li>\\n<li>Fix: Weird mobile behavior with Cube effect in Carousel<\\/li>\\n<li>Fix: Show the first thumbnail in the Slideshow carousel correctly<\\/li>\\n<\\/ul>\\n<h4>2.1.8 - 2018-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Added styling options for WC Additional Information widget<\\/li>\\n<li>Tweak: Added styling options for \'View Cart\' link in Products widget<\\/li>\\n<li>Fix: 3rd party plugin support for WC single product template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5338\\\">#5338<\\/a>)<\\/li>\\n<li>Fix: Layout of Related Product widget with WC native style<\\/li>\\n<\\/ul>\\n<h4>2.1.7 - 2018-09-03<\\/h4>\\n<ul>\\n<li>New: WC Archive Description widget<\\/li>\\n<li>Tweak: Added blend mode to Slides widget background overlay (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5555\\\">#5555<\\/a>)<\\/li>\\n<li>Tweak: Added \'Current Subcategories\' option to Product Categories widget<\\/li>\\n<li>Fix: Added default vertical alignment in Author Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5589\\\">#5589<\\/a>)<\\/li>\\n<li>Tweak: Added more blend mode options for CTA widget<\\/li>\\n<li>Tweak: Improved plugin updater method based on WordPress version<\\/li>\\n<li>Fix: Improved IE compatibility for Posts and Portfolio widgets<\\/li>\\n<li>Fix: Added default gap for products pagination<\\/li>\\n<li>Fix: Post thumbnail flickering in Safari browser<\\/li>\\n<li>Fix: Close mobile nav menu on click only in full-width mode<\\/li>\\n<li>Fix: Added trailing slash to pagination links in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.1.6 - 2018-08-28<\\/h4>\\n<ul>\\n<li>New: WC Product Category Image widget and Dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5117\\\">#5117<\\/a>)<\\/li>\\n<li>Tweak: Allow HTML in Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5491\\\">#5491<\\/a>)<\\/li>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Tweak: Deprecated Follow option in the Facebook Button widget<\\/li>\\n<li>Fix: Posts widget grid in Safari &amp; IE11 (Depended on Elementor v2.2)<\\/li>\\n<li>Fix: Posts widget CSS when using cards skin in masonry mode<\\/li>\\n<li>Fix: ACF Image &amp; ACF URL option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: WC product gallery links in RTL<\\/li>\\n<li>Fix: Dynamic tags in Call To Action widget<\\/li>\\n<\\/ul>\\n<h4>2.1.5 - 2018-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Fix: Posts Widget layout theme compatibility<\\/li>\\n<li>Fix: Added compatibility for WooCommerce native style<\\/li>\\n<\\/ul>\\n<h4>2.1.4 - 2018-08-19<\\/h4>\\n<ul>\\n<li>Fix: Layout issue compatibility with themes caused by v2.1 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5442\\\">#5442<\\/a>)<\\/li>\\n<li>Fix: Dynamic setting in Pricing Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5460\\\">#5460<\\/a>)<\\/li>\\n<li>Fix: Hide Target URL control if is not necessary in Blockquote widget<\\/li>\\n<li>Fix: Selector specificity for WooCommerce Products widget<\\/li>\\n<li>Fix: WooCommerce conflicts in the editor in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.3 - 2018-08-15<\\/h4>\\n<ul>\\n<li>Fix: Thumbnails in the Posts widget jumping (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5350\\\">#5350<\\/a>)<\\/li>\\n<li>Fix: Responsive grid in the Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5375\\\">#5375<\\/a>)<\\/li>\\n<li>Fix: Added missing <code>setup_postdata<\\/code> for Product Data Tabs widget<\\/li>\\n<li>Fix: Rollback to older version of Flip Box widget to resolve 3D depth issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5399\\\">#5399<\\/a>)<\\/li>\\n<li>Fix: Allowed types in the Upload File field are now case-insensitive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5254\\\">#5254<\\/a>)<\\/li>\\n<li>Fix: Carousel behavior when using a single slide<\\/li>\\n<\\/ul>\\n<h4>2.1.2 - 2018-08-12<\\/h4>\\n<ul>\\n<li>Fix: Error when ACF Pro is not installed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5367\\\">#5367<\\/a>)<\\/li>\\n<li>Fix: Edge cases in Inspector where document is a boolean<\\/li>\\n<li>Fix: Edge cases for incorrect file fields in PODS<\\/li>\\n<\\/ul>\\n<h4>2.1.1 - 2018-08-09<\\/h4>\\n<ul>\\n<li>Fix: Highlighted text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5345\\\">#5345<\\/a>)<\\/li>\\n<li>Fix: Flip Box effect issues<\\/li>\\n<li>Fix: ACF Options page fields support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5329\\\">#5329<\\/a>)<\\/li>\\n<li>Fix: Import Pro templates in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.0 - 2018-08-07<\\/h4>\\n<ul>\\n<li>New: Introducing WooCommerce Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1690\\\">#1690<\\/a>)<\\/li>\\n<li>New: Introducing 12 new dynamic tags &amp; widgets for WooCommerce: Gallery, Image, Price, Rating, Description, Breadcrumbs, Data Tabs, Stock, Related, Upsell, Title &amp; Archive<\\/li>\\n<li>New: Introducing Cart Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4220\\\">#4220<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4600\\\">#4600<\\/a>)<\\/li>\\n<li>New: Added integration with Toolset (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Added integration with Pods (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4129\\\">#4129<\\/a>)<\\/li>\\n<li>New: Added stick to bottom in scrolling effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4799\\\">#4799<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect to Widgets under advanced tab<\\/li>\\n<li>New: Introducing Internal URL Dynamic Tag<\\/li>\\n<li>Tweak: Added a Last Updated Date in the Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4597\\\">#4597<\\/a>)<\\/li>\\n<li>Tweak: Added Redirect after Logout option for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4447\\\">#4447<\\/a>)<\\/li>\\n<li>Tweak: Avoid repeating posts when using more than one in the Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1878\\\">#1878<\\/a>)<\\/li>\\n<li>Tweak: Add Custom Query hook for Query control (<a href=\\\"https:\\/\\/developers.elementor.com\\/custom-query-filter\\/\\\">More Info<\\/a>) (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1748\\\">#1748<\\/a>)<\\/li>\\n<li>Tweak: Added form-message style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for button on the Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for Call to action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4767\\\">#4767<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic Tags support for Google Map field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4602\\\">#4602<\\/a>)<\\/li>\\n<li>Tweak: Added an support for <code>label|value<\\/code> in options field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4594\\\">#4594<\\/a>)<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> condition for theme builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4681\\\">#4681<\\/a>)<\\/li>\\n<li>Tweak: Added Activate\\/Deactivate license key via WP-CLI command (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4149\\\">#4149<\\/a>)<\\/li>\\n<li>Tweak: Added <code>is_scroll<\\/code> trigger to scrolling effect (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4340\\\">#4340<\\/a>)<\\/li>\\n<li>Tweak: Added In Same Term support for Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4177\\\">#4177<\\/a>)<\\/li>\\n<li>Tweak: Added responsive control for Slides To Scroll control in all carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3697\\\">#3697<\\/a>)<\\/li>\\n<li>Tweak: Added style options for Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1335\\\">#1335<\\/a>)<\\/li>\\n<li>Tweak: Added button CSS ID for Forms widget<\\/li>\\n<li>Tweak: Added pixel units to Post-Info divider height control<\\/li>\\n<li>Tweak: Rewrite sticky library to handle with stretch section, auto scroller &amp; more bugs<\\/li>\\n<li>Tweak: Re-organize the panel categories per document type<\\/li>\\n<li>Tweak: Added ACF support for <code>options-page<\\/code> fields<\\/li>\\n<li>Tweak: Added dynamic tag for Animated headlines<\\/li>\\n<li>Tweak: Added dynamic tag for BlockQuote widget<\\/li>\\n<li>Fix: Elementor Full Width template in GeneratePress theme (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4817\\\">#4817<\\/a>)<\\/li>\\n<li>Fix: Checkbox fields can accidentally be set to required (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4324\\\">#4324<\\/a>)<\\/li>\\n<li>Fix: Initial slide in Carousel widget<\\/li>\\n<li>Fix: Stay on current slide while editing in Carousel widget<\\/li>\\n<li>Fix: Default slides per device in Carousel widget<\\/li>\\n<li>Deprecated: Woo Products, Woo Elements &amp; Single elements widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.18 - 2018-07-27<\\/h4>\\n<ul>\\n<li>Fix: Global widget error on saving page<\\/li>\\n<\\/ul>\\n<h4>2.0.17 - 2018-07-26<\\/h4>\\n<ul>\\n<li>Fix: Sub menu indicator direction in Nav Menu widget<\\/li>\\n<li>Fix: Change the title and icon for Global Widget when is moving<\\/li>\\n<li>Fix: CSS wrapper selector for Page Document<\\/li>\\n<\\/ul>\\n<h4>2.0.16 - 2018-07-16<\\/h4>\\n<ul>\\n<li>Tweak: CSS Filter Control module is now included in Elementor<\\/li>\\n<li>Fix: Border gap in Portfolio widget when item gap set as <code>0<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5077\\\">#5077<\\/a>)<\\/li>\\n<li>Fix: Restore current query after get Global Widget data<\\/li>\\n<li>Fix: Add action item in History on unlink Global widget<\\/li>\\n<\\/ul>\\n<h4>2.0.15 - 2018-07-10<\\/h4>\\n<ul>\\n<li>Fix: Dropdown menu items collapsing when activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4996\\\">#4996<\\/a>)<\\/li>\\n<li>Fix: GMT offset in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4997\\\">#4997<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.0.14 - 2018-07-08<\\/h4>\\n<ul>\\n<li>Tweak: Added set method to form record for developers (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4983\\\">#4983<\\/a>)<\\/li>\\n<li>Fix: Autoplay option for Carousels<\\/li>\\n<li>Fix: Close mobile menu on item click in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.13 - 2018-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for Elementor v2.1<\\/li>\\n<\\/ul>\\n<h4>2.0.12 - 2018-07-02<\\/h4>\\n<ul>\\n<li>Fix: Global widget PHP notices<\\/li>\\n<li>Fix: Slides widget active slide lost focus when clicking Editor tabs<\\/li>\\n<li>Fix: Form select field send all selected values on multiple selection<\\/li>\\n<li>Fix: Validate time field only if it\'s not empty<\\/li>\\n<li>Fix: ConvertKit API not saving name field<\\/li>\\n<\\/ul>\\n<h4>2.0.11 - 2018-06-12<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder <code>author<\\/code> archive condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4593\\\">#4593<\\/a>)<\\/li>\\n<li>Fix: Respect password protected posts in Post Content widget<\\/li>\\n<li>Fix: Custom Fonts redirect to post edit screen in edge cases.<\\/li>\\n<\\/ul>\\n<h4>2.0.10 - 2018-06-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> filter hook for multi-language plugins<\\/li>\\n<li>Fix: Dynamic Post Terms missing taxonomies if the taxonomy is registered to more then one post types (#4386)<\\/li>\\n<li>Fix: Fields shortcode missing after removing a field in Form widget<\\/li>\\n<li>Deprecated: <code>get_theme_templates_by_location<\\/code> is replaced by <code>get_location_templates<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.0.9 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Fix: Compatibility for PHP version 5.4<\\/li>\\n<\\/ul>\\n<h4>2.0.8 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added Active state for Nav Menu dropdown<\\/li>\\n<li>Tweak: Added style for &quot;Nothing Found&quot; Message for Archive Posts widget<\\/li>\\n<li>Tweak: Removed caption control in Site Logo widget<\\/li>\\n<li>Tweak: Added option to position currency symbol before\\/after In Price Table widget<\\/li>\\n<li>Fix: Query control manual selection does not show more than 10 items (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4479\\\">#4479<\\/a>)<\\/li>\\n<li>Fix: Styling glitch with terms list in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4342\\\">#4342<\\/a>)<\\/li>\\n<li>Fix: Sub terms missing in Query control in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4527\\\">#4527<\\/a>)<\\/li>\\n<li>Fix: Avoid rendering a template if it\'s not published<\\/li>\\n<li>Fix: 404 Page style not working<\\/li>\\n<li>Fix: Price Table button with hover animation not working in editor<\\/li>\\n<li>Fix: Styling conflict in Call to Action widget<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Adding parent wrapper class to Site Title widget<\\/li>\\n<\\/ul>\\n<h4>2.0.7 - 2018-05-16<\\/h4>\\n<ul>\\n<li>Fix: Content not found on section when single is set to &quot;All Singular&quot;<\\/li>\\n<li>Fix: Open 404 template library for 404 page<\\/li>\\n<li>Tweak: Added CSS prefix for dev files<\\/li>\\n<li>Tweak: Removed product post type from display conditions<\\/li>\\n<\\/ul>\\n<h4>2.0.6 - 2018-05-15<\\/h4>\\n<ul>\\n<li>Tweak: Set type on create new single template<\\/li>\\n<li>Tweak: Always show the conditions dialog in the Draft status<\\/li>\\n<li>Tweak: Added document type <code>widget<\\/code><\\/li>\\n<li>Tweak: Added Post Custom Field tag to URL category<\\/li>\\n<li>Fix: When ACF Field Groups are Empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4428\\\">#4428<\\/a>)<\\/li>\\n<li>Fix: Links inside carousel in edge cases<\\/li>\\n<li>Fix: Responsive issue in My Templates area<\\/li>\\n<li>Fix: Image alignment for post content with text alignment<\\/li>\\n<li>Fix: Post Content widget when preview post is missing<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Style settings for Post \\/ Archive Title widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.5 - 2018-05-08<\\/h4>\\n<ul>\\n<li>Fix: Creating a CPT with name like document-type breaks the editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4203\\\">#4203<\\/a>)<\\/li>\\n<li>Fix: Added support for new version of reCAPTCHA<\\/li>\\n<li>Fix: Added fallback for controls after <code>post_status<\\/code><\\/li>\\n<li>Fix: Required field in forms widget<\\/li>\\n<li>Fix: Media Carousel in the Coverflow skin<\\/li>\\n<li>Fix: 404 Page show wrong template in edge cases<\\/li>\\n<li>Fix: Save the default menu in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.4 - 2018-05-02<\\/h4>\\n<ul>\\n<li>Tweak: Added parent\'s class for extended widgets<\\/li>\\n<li>Tweak: Set entire-site as default to avoid conflict with save without conditions<\\/li>\\n<li>Tweak: Initialize global model when it\'s needed<\\/li>\\n<li>Tweak: Removed some duplicate strings<\\/li>\\n<li>Tweak: Query control now includes empty terms<\\/li>\\n<li>Tweak: Design polish for conditions dialog<\\/li>\\n<li>Tweak: Decreasing <code>minimumInputLength<\\/code> to 1 of select2<\\/li>\\n<li>Fix: Editor not loading for single templates in edge cases<\\/li>\\n<li>Fix: Select2 in Safari takes it\'s time to get the original select width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4310\\\">#4310<\\/a>)<\\/li>\\n<li>Fix: Slides per view not working for some effects<\\/li>\\n<li>Fix: New slides not showing in the editor<\\/li>\\n<li>Fix: Editor for section without a defined location, defaults to content area<\\/li>\\n<\\/ul>\\n<h4>2.0.3 - 2018-04-24<\\/h4>\\n<ul>\\n<li>Tweak: Optimize CSS for Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4214\\\">#4214<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4216\\\">#4216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4225\\\">#4225<\\/a>)<\\/li>\\n<li>Fix: Double render on frontend view in core locations<\\/li>\\n<li>Fix: Masonry not working in edge cases<\\/li>\\n<li>Fix: Added default setting for Author Info tag<\\/li>\\n<\\/ul>\\n<h4>2.0.2 - 2018-04-18<\\/h4>\\n<ul>\\n<li>Fix: Regenerate conditions to include all templates<\\/li>\\n<\\/ul>\\n<h4>2.0.1 - 2018-04-17<\\/h4>\\n<ul>\\n<li>Tweak: Added div wrapper for Nothing Found massage (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4136\\\">#4136<\\/a>)<\\/li>\\n<li>Tweak: Show empty categories in Query Control &amp; Display Conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4127\\\">#4127<\\/a>)<\\/li>\\n<li>Tweak: Added Divider control for Post Info widget<\\/li>\\n<li>Fix: Update admin links in Yoast Breadcrumbs widget<\\/li>\\n<li>Fix: Sticky element conflict with clearfix CSS<\\/li>\\n<li>Fix: Compatibility for PHP version 5.4.32 &amp; 5.5.16 and below<\\/li>\\n<li>Fix: Avoid running <code>wp_head<\\/code> hooks twice<\\/li>\\n<\\/ul>\\n<h4>2.0.0 - 2018-04-16<\\/h4>\\n<ul>\\n<li>New: Introducing Theme Builder - <a href=\\\"https:\\/\\/elementor.com\\/introducing-theme-builder\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/417\\\">#417<\\/a>)<\\/li>\\n<li>New: Introducing Locations API to inject custom location templates<\\/li>\\n<li>New: Introducing Display Conditions for all dynamic templates<\\/li>\\n<li>New: Introducing Dynamic Tag feature - a new way to add dynamic content to your design<\\/li>\\n<li>New: Introducing Role manager to allow &quot;Content Only mode&quot; (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/483\\\">#483<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/653\\\">#653<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/885\\\">#885<\\/a>)<\\/li>\\n<li>New: Introducing 9 new dynamic widgets: Archive Posts, Archive Title, Post Content, Post Info, Post Title, Post Excerpt, Featured Image, Site Logo &amp; Site Name (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Introducing Developers area with guides and API documentation - <a href=\\\"https:\\/\\/elementor.com\\/introducing-elementor-developer-api\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/451\\\">#451<\\/a>)<\\/li>\\n<li>New: Introducing <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor-hello-theme\\\">Elementor Hello Theme<\\/a> - A demonstration theme for developers<\\/li>\\n<li>New: Added new type of templates: Header, Footer, Single and Archive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2761\\\">#2761<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2623\\\">#2623<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2109\\\">#2109<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2061\\\">#2061<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2439\\\">#2439<\\/a>)<\\/li>\\n<li>New: Design 404 page with Single template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1558\\\">#1558<\\/a>)<\\/li>\\n<li>New: Design Search Results with Archive template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3196\\\">#3196<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2590\\\">#2590<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect for sections including <em>Sticky Element<\\/em> per device (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2412\\\">#2412<\\/a>)<\\/li>\\n<li>New: Integration with Custom Fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2054\\\">#2054<\\/a>)<\\/li>\\n<li>New: Partial support for Toolset integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Partial support for Pods integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2169\\\">#2169<\\/a>)<\\/li>\\n<li>New: Partial support for ACF integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2041\\\">#2041<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2059\\\">#2059<\\/a>)<\\/li>\\n<li>Tweak: Add custom fields support for ActiveCampaign (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3531\\\">#3531<\\/a>)<\\/li>\\n<li>Tweak: Allow brackets in Forms Tel field<\\/li>\\n<li>Tweak: Added currency format control for Price Table widget<\\/li>\\n<li>Tweak: Reduced API request for some servers<\\/li>\\n<li>Fix: Dropdown <code>border-radius<\\/code> in Nav Menu widget<\\/li>\\n<li>Fix: Price List widget layout breaks in edge cases<\\/li>\\n<li>Note: This version requires Elementor v2.0.6<\\/li>\\n<\\/ul>\\n<h4>1.15.6 - 2018-03-28<\\/h4>\\n<ul>\\n<li>Fix: Removed duplicate Custom CSS section (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3938\\\">#3938<\\/a>)<\\/li>\\n<li>Fix: <code>box-shadow<\\/code> issue with cards skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3940\\\">#3940<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.5 - 2018-03-27<\\/h4>\\n<ul>\\n<li>Fix: Added global widget compatibility for Elementor v2.0<\\/li>\\n<li>Fix: Reduced API request for some servers<\\/li>\\n<\\/ul>\\n<h4>1.15.4 - 2018-03-26<\\/h4>\\n<ul>\\n<li>Tweak: Allow brackets in phone field<\\/li>\\n<li>Tweak: Added compatibility with Yoast 7.0.+<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Support for multiple carousel setting in editor<\\/li>\\n<li>Fix: <code>on_export<\\/code> issue in forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3890\\\">#3890<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.3 - 2018-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Added unique class to field group div (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3595\\\">#3595<\\/a>)<\\/li>\\n<li>Fix: Screen Options missing when Pro is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3622\\\">#3622<\\/a>)<\\/li>\\n<li>Fix: Allow label styling even when <code>show labels<\\/code> is set hide (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3544\\\">#3544<\\/a>)<\\/li>\\n<li>Fix: Typography control not working in edge cases<\\/li>\\n<li>Fix: Safari compatibility for Search widget<\\/li>\\n<\\/ul>\\n<h4>1.15.2 - 2018-02-27<\\/h4>\\n<ul>\\n<li>Fix: Only add support mine-type if needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3543\\\">#3543<\\/a>)<\\/li>\\n<li>Fix: Better support for Old Typekit kits<\\/li>\\n<\\/ul>\\n<h4>1.15.1 - 2018-02-21<\\/h4>\\n<ul>\\n<li>Tweak: Custom font title placeholder is not <code>enter font family<\\/code><\\/li>\\n<li>Tweak: Custom font title set as required<\\/li>\\n<li>Fix: Custom font, <code>font-face<\\/code> enqueued only once if used in global (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3513\\\">#3513<\\/a>)<\\/li>\\n<li>Fix: Added workaround for upload validation which relies on a PHP extension (fileinfo) with inconsistent reporting behavior.<\\/li>\\n<\\/ul>\\n<h4>1.15.0 - 2018-02-19<\\/h4>\\n<ul>\\n<li>New: Added custom fonts manager for self hosted fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/852\\\">#852<\\/a>)<\\/li>\\n<li>New: Integration with Adobe TypeKit fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/631\\\">#631<\\/a>)<\\/li>\\n<li>Tweak: Clear menu from Nav Menu widget on template export<\\/li>\\n<li>Tweak: Allow zero for GetResponse integration as <code>day of cycle<\\/code><\\/li>\\n<\\/ul>\\n<h4>1.14.2 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Fix: Global widget content that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.14.1 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>none<\\/code> option to content animation in CTA widget<\\/li>\\n<li>Tweak: Added <code>form_id<\\/code> to ActiveCampaign integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3422\\\">#3422<\\/a>)<\\/li>\\n<li>Fix: Page crashed when Global widget not found.<\\/li>\\n<\\/ul>\\n<h4>1.14.0 - 2018-02-12<\\/h4>\\n<ul>\\n<li>New: Added Call to Action widget<\\/li>\\n<li>Tweak: MailPoet pull field mapping from MailPoet instead of hardcoded<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Allow zero (0) to be accepted as a field value<\\/li>\\n<li>Fix: Login form when custom login URL is set<\\/li>\\n<li>Fix: Added Day of cycle control to GetResponse integration<\\/li>\\n<\\/ul>\\n<h4>1.13.2 - 2018-01-23<\\/h4>\\n<ul>\\n<li>Tweak: Added placeholder to Password field<\\/li>\\n<li>Tweak: Removed <code>subscriber_already_exists_message<\\/code> control to prevent potential data leakage<\\/li>\\n<li>Fix: MailPoet Subscriber Already Exists error validation against translated string directly from MailPoet<\\/li>\\n<li>Fix: Changed <code>imagesLoaded()<\\/code> to Vanilla JS to avoid compatibility issues with some themes<\\/li>\\n<li>Fix: Only validate Tel field if not empty<\\/li>\\n<li>Fix: Stop slider while editing<\\/li>\\n<\\/ul>\\n<h4>1.13.1 - 2018-01-16<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with old PHP versions<\\/li>\\n<\\/ul>\\n<h4>1.13.0 - 2018-01-16<\\/h4>\\n<ul>\\n<li>New: Added File Upload field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1482\\\">#1482<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Acceptance field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1693\\\">#1693<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Date field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1868\\\">#1868<\\/a>)<\\/li>\\n<li>New: Added Time field for Forms widget<\\/li>\\n<li>New: Added Password field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2164\\\">#2164<\\/a>)<\\/li>\\n<li>New: Added HTML field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1500\\\">#1500<\\/a>)<\\/li>\\n<li>Tweak: Added characters validation for Tel field<\\/li>\\n<li>Tweak: Added min &amp; max validation for Number field<\\/li>\\n<li>Tweak: Added multiple selection for Select field<\\/li>\\n<li>Tweak: Added donReach integration for Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.12.3 - 2018-01-09<\\/h4>\\n<ul>\\n<li>Fix: Render element plain content instead of parsed content when not needed in global widget<\\/li>\\n<li>Fix: Apply <code>url-encoding<\\/code> to &quot;Tweet&quot; button text in Blockquote widget to prevent unexpected corruption of the tweet text<\\/li>\\n<li>Fix: Removed My Account link from dashboard widget<\\/li>\\n<\\/ul>\\n<h4>1.12.2 - 2018-01-03<\\/h4>\\n<ul>\\n<li>Tweak: Added animation none for Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2964\\\">#2964<\\/a>)<\\/li>\\n<li>Fix: Active license button style<\\/li>\\n<\\/ul>\\n<h4>1.12.1 - 2018-01-02<\\/h4>\\n<ul>\\n<li>Tweak: Removed theme-element widgets from plain content<\\/li>\\n<li>Tweak: Set all theme-element widgets to extend same widget Base<\\/li>\\n<li>Tweak: Removed credit URL in forms meta data<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.9<\\/li>\\n<li>Fix: Validate Get response Error as real error<\\/li>\\n<li>Fix: Removed responsive height control from Facebook Page widget<\\/li>\\n<\\/ul>\\n<h4>1.12.0 - 2017-12-20<\\/h4>\\n<ul>\\n<li>New: Added Drip integration to Forms<\\/li>\\n<li>New: Added ActiveCampaign integration to Forms<\\/li>\\n<li>New: Added ConverKit integration to Forms<\\/li>\\n<li>New: Added GetResponse integration to Forms<\\/li>\\n<li>New: Added form <code>id<\\/code>, <code>name<\\/code> attributes to handle integration with auto collectors like HubSpot<\\/li>\\n<li>New: Added Global API key for MailChimp to improve the workflow<\\/li>\\n<li>Tweak: Better error handling and message display for Forms<\\/li>\\n<li>Fix: PHP notice Undefined variable <code>$cc_header<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2934\\\">#2934<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.11.0 - 2017-12-11<\\/h4>\\n<ul>\\n<li>New: Added a native Comments widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Added an Author Box widget<\\/li>\\n<li>New: Added a Post Navigation widget<\\/li>\\n<li>New: Added a Yoast Breadcrumbs widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2749\\\">#2749<\\/a>)<\\/li>\\n<li>Tweak: Added a close button to search widget under Full Screen skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2762\\\">#2762<\\/a>)<\\/li>\\n<li>Fix: Allow currency symbol to appear even if price isn\'t numeric<\\/li>\\n<li>Fix: Edge cases when the nav menu is empty in a stretched section<\\/li>\\n<li>Fix: Added fallback when you remove the <code>space-between<\\/code> on Swiper carousel<\\/li>\\n<\\/ul>\\n<h4>1.10.2 - 2017-12-03<\\/h4>\\n<ul>\\n<li>Fix: Missing save widget icon (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2878\\\">#2878<\\/a>)<\\/li>\\n<li>Fix: Global widgets not saving edits (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2874\\\">#2874<\\/a>)<\\/li>\\n<li>Fix: Removed <code>white-space: nowrap;<\\/code> property from vertical menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2815\\\">#2815<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.10.1 - 2017-11-30<\\/h4>\\n<ul>\\n<li>Tweak: Added default value for search form<\\/li>\\n<li>Tweak: Order template list A-Z in the library widget<\\/li>\\n<li>Tweak: get_users\\/authors query is now done using AJAX only, for better performance in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2865\\\">#2865<\\/a>)<\\/li>\\n<li>Fix: When adding <code>.00<\\/code> it is not displayed on the front<\\/li>\\n<li>Fix: Make sure space between is numeric for carousel control<\\/li>\\n<li>Fix: Added space for radio &amp; checkbox fields in form widget<\\/li>\\n<\\/ul>\\n<h4>1.10.0 - 2017-11-15<\\/h4>\\n<ul>\\n<li>New: Added native Search form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2576\\\">#2576<\\/a>)<\\/li>\\n<li>Tweak: Added Slides To Scroll &amp; Loop controls to Media Carousel and Testimonials widgets<\\/li>\\n<li>Tweak: Added Inline editing to Blockquote widget<\\/li>\\n<li>Fix: Animated Headline color bug (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2516\\\">#2516<\\/a>)<\\/li>\\n<li>Fix: Animated Headline with Rotating skin<\\/li>\\n<li>Fix: RTL fix for Animated Headline widget in \'typing\' and \'clip\' animations<\\/li>\\n<li>Fix: Empty menu cause jQuery to crash in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2662\\\">#2662<\\/a>)<\\/li>\\n<li>Fix: Custom CSS gone after reloading the editor<\\/li>\\n<\\/ul>\\n<h4>1.9.5 - 2017-10-27<\\/h4>\\n<ul>\\n<li>Fix: Broken Global widget with JS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2639\\\">#2639<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.9.4 - 2017-10-24<\\/h4>\\n<ul>\\n<li>Tweak: Improved UI for notices and license page<\\/li>\\n<li>Fix: Update system conflict with other EDD plugins<\\/li>\\n<li>Fix: WooCommerce frontend hooks on Elementor editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2577\\\">#2577<\\/a>)<\\/li>\\n<li>Fix: Removed default border left in Nav Menu dropdown CSS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2496\\\">#2496<\\/a>)<\\/li>\\n<li>Fix: Increased submenu max-width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2558\\\">#2558<\\/a>)<\\/li>\\n<li>Fix: Save global templates without their defaults<\\/li>\\n<li>Fix: Horizontal scrolling issue with posts grid<\\/li>\\n<\\/ul>\\n<h4>1.9.3 - 2017-10-03<\\/h4>\\n<ul>\\n<li>Fix: Condition slide style that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.9.2 - 2017-10-02<\\/h4>\\n<ul>\\n<li>New: Added integration with MailPoet 3 for Forms actions<\\/li>\\n<li>Fix: Removed height control from Testimonial carousel in mobile editing mode<\\/li>\\n<li>Fix: Removed bottom padding when there\'s no pagination in Testimonial carousel<\\/li>\\n<li>Fix: Added condition for slides style section in skin bubble mode<\\/li>\\n<li>Fix: Slides per view control for mobile editing in Testimonial carousel<\\/li>\\n<li>Fix: Navigation Arrows icons matched with common Elementor Navigation Arrows<\\/li>\\n<\\/ul>\\n<h4>1.9.1 - 2017-09-28<\\/h4>\\n<ul>\\n<li>Fix: Slides per view for slideshow carousel<\\/li>\\n<li>Fix: Final polish for the new Testimonial Carousel widget<\\/li>\\n<li>Fix: Don\'t play video if slide type is not video<\\/li>\\n<li>Fix: Removed slides style section condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2497\\\">#2497<\\/a>)<\\/li>\\n<li>Fix: Set cursor as pointer for slideshow thumbnails<\\/li>\\n<\\/ul>\\n<h4>1.9.0 - 2017-09-26<\\/h4>\\n<ul>\\n<li>New: Added Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/216\\\">#216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/347\\\">#347<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2209\\\">#2209<\\/a>)<\\/li>\\n<li>New: Added Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/715\\\">#715<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.3 - 2017-09-24<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility for WordPress 4.8.2 &amp; 4.7.6<\\/li>\\n<li>Fix: Remove slashes from Form sent data<\\/li>\\n<\\/ul>\\n<h4>1.8.2 - 2017-09-19<\\/h4>\\n<ul>\\n<li>Tweak: Added target URL for the tweet message in Blockquote widget<\\/li>\\n<li>Tweak: Render the slide height before the slider is finished loading<\\/li>\\n<li>Fix: Space between words for Animated Headline widget<\\/li>\\n<li>Fix: RTL compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Italic font style for Animated Headline widget<\\/li>\\n<li>Fix: Excluded Menu widget from the WP Editor text rendering<\\/li>\\n<\\/ul>\\n<h4>1.8.1 - 2017-09-18<\\/h4>\\n<ul>\\n<li>Fix: WCAG Compatible &quot;required&quot; field attribute for W3C validation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2391\\\">#2391<\\/a>)<\\/li>\\n<li>Fix: Print the main menu only when is necessary in Menu widget<\\/li>\\n<li>Fix: Use CSS media query instead of JS to hide items in Menu widget to avoid flickering on page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2381\\\">#2381<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.0 - 2017-09-12<\\/h4>\\n<ul>\\n<li>New: Added Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1406\\\">#1406<\\/a>)<\\/li>\\n<li>Fix: Field ID for checkbox control in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2279\\\">#2279<\\/a>)<\\/li>\\n<li>Fix: Style for Blockquote widget included<\\/li>\\n<\\/ul>\\n<h4>1.7.2 - 2017-09-07<\\/h4>\\n<ul>\\n<li>Tweak: Loading Facebook SDK via JS for better compatibility with caching plugins<\\/li>\\n<li>Fix: Responsive Embed Facebook post widget for Safari iOS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2340\\\">#2340<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.7.1 - 2017-09-05<\\/h4>\\n<ul>\\n<li>Fix: Facebook SDK version<\\/li>\\n<\\/ul>\\n<h4>1.7.0 - 2017-09-05<\\/h4>\\n<ul>\\n<li>New: Added Facebook Button widget for Like, Recommend, Share and Follow<\\/li>\\n<li>New: Added Facebook Embed widget for Post, Video and Comment<\\/li>\\n<li>New: Added Facebook Comments widget<\\/li>\\n<li>New: Added Facebook Page widget (Previously known as Like Box)<\\/li>\\n<li>New: Added Blockquote widget with Tweet button<\\/li>\\n<li>Tweak: Added Facebook SDK integration for all Facebook widgets<\\/li>\\n<li>Fix: Animated headline rotating with long words<\\/li>\\n<\\/ul>\\n<h4>1.6.1 - 2017-08-28<\\/h4>\\n<ul>\\n<li>Fix: Animated Headline marker gets in front of neighboring spans even when &quot;Bring to Front&quot; is not set<\\/li>\\n<li>Fix: Stroke animation in Animated Headline for MS Edge browser<\\/li>\\n<li>Fix: Animated headline with more than 1-word per rotation<\\/li>\\n<li>Fix: Animated Headline in two lines<\\/li>\\n<li>Fix: Some errors in Global widget<\\/li>\\n<\\/ul>\\n<h4>1.6.0 - 2017-08-22<\\/h4>\\n<ul>\\n<li>New: Added Animated Headline widget<\\/li>\\n<li>New: Added Hidden field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2038\\\">#2038<\\/a>)<\\/li>\\n<li>Tweak: Added notice to update Elementor to v1.6.5 or higher<\\/li>\\n<li>Fix: CSS Animations names no longer minified, in order to prevent unexpected conflicts<\\/li>\\n<\\/ul>\\n<h4>1.5.9 - 2017-08-16<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.7<\\/li>\\n<li>Fix: Portfolio compatibility for GeneratePress theme<\\/li>\\n<li>Fix: Portfolio filter compatibility for RTL<\\/li>\\n<li>Fix: Pagination apply for all posts widget in the page<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.8 - 2017-07-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.6<\\/li>\\n<li>Fix: Improved backward compatibility for query control rename<\\/li>\\n<\\/ul>\\n<h4>1.5.7 - 2017-07-24<\\/h4>\\n<ul>\\n<li>Tweak: Moved JS render of reCAPTCHA to a separate file<\\/li>\\n<li>Tweak: Display the label in the reCAPTCHA field for better experience<\\/li>\\n<li>Tweak: Rename <code>panel-posts-control<\\/code> to <code>query-control<\\/code> and added fallback support<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor with history feature<\\/li>\\n<li>Fix: reCAPTCHA preview on the editor<\\/li>\\n<li>Fix: Manual selection (query control) has stopped working after saving (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2000\\\">#2000<\\/a>)<\\/li>\\n<li>Fix: Added condition for icon size control in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.5.6 - 2017-07-12<\\/h4>\\n<ul>\\n<li>Fix: Query Control correction for taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1963\\\">#1963<\\/a>)<\\/li>\\n<li>Fix: Custom CSS override scheme color in the editor<\\/li>\\n<li>Fix: Added order by Menu Order for Query Control in WC widget<\\/li>\\n<li>Fix: Glitch with Flip Box background overlay<\\/li>\\n<\\/ul>\\n<h4>1.5.5 - 2017-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Moved reCAPTCHA render to handler &amp; load only if a form is exist<\\/li>\\n<li>Fix: MailChimp integration: Default number of items returned by API increased to 999<\\/li>\\n<li>Fix: MailChimp integration: Refresh the groups list if API is changed<\\/li>\\n<li>Fix: Sorted items in filter bar by A-Z<\\/li>\\n<li>Fix: Editor glitch with Elementor v1.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1927\\\">#1927<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.5.4 - 2017-06-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved compatibility for Elementor v1.5<\\/li>\\n<li>Fix: URL default for Add To Cart widget<\\/li>\\n<li>Fix: Allowed <code>date<\\/code> and <code>birthday<\\/code> fields as text for MailChimp integration<\\/li>\\n<\\/ul>\\n<h4>1.5.3 - 2017-06-19<\\/h4>\\n<ul>\\n<li>Tweak: Make flip-box height responsive control<\\/li>\\n<li>Fix: Facebook share count now gets retrieved by Elementor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1829\\\">#1829<\\/a>)<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.2 - 2017-06-13<\\/h4>\\n<ul>\\n<li>Fix: Custom CSS panel location compatibility for the old versions<\\/li>\\n<\\/ul>\\n<h4>1.5.1 - 2017-06-12<\\/h4>\\n<ul>\\n<li>Fix: MailChimp update existing user registration<\\/li>\\n<li>Fix: Global widget with JS in the editor mode<\\/li>\\n<li>Fix: Label section condition in Login widget<\\/li>\\n<li>Fix: Changes to unlinked global widget do not appear in the editor<\\/li>\\n<\\/ul>\\n<h4>1.5.0 - 2017-05-23<\\/h4>\\n<ul>\\n<li>New: Added Cards, a new skin for Posts widget<\\/li>\\n<li>New: Added Exclude option to post query control group<\\/li>\\n<li>Tweak: Added <code>post_class()<\\/code> for each post in the loop<\\/li>\\n<li>Tweak: Added <code>.elementor-posts-masonry<\\/code> class when Masonry layout is enabled<\\/li>\\n<li>Tweak: Added compatibility for the next release of Elementor v1.5.0<\\/li>\\n<li>Tweak: CSS <code>autoprefixer<\\/code> now supports last 5 versions of browsers<\\/li>\\n<li>Tweak: Added <code>imageLoaded<\\/code> library for Posts &amp; Portfolio widgets<\\/li>\\n<\\/ul>\\n<h4>1.4.4 - 2017-05-18<\\/h4>\\n<ul>\\n<li>Fix: Force Mailchimp API to return all lists and not just 10 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1683\\\">#1683<\\/a>)<\\/li>\\n<li>Fix: Added <code>.elementor-form<\\/code> class to Login form to fix style glitch<\\/li>\\n<\\/ul>\\n<h4>1.4.3 - 2017-05-14<\\/h4>\\n<ul>\\n<li>Tweak: Added Redirect After Login option to Login widget<\\/li>\\n<li>Tweak: Stay in the current page after logout in Login widget<\\/li>\\n<li>Tweak: Preparation for Elementor settings tabs in future version<\\/li>\\n<li>Fix: Pinterest in Share Buttons widget now sharing the URL alone<\\/li>\\n<li>Fix: Bug with <code>active<\\/code> class in portfolio filter item<\\/li>\\n<li>Fix: Higher specific list-style-type <code>none<\\/code> for filter items to override some theme style<\\/li>\\n<\\/ul>\\n<h4>1.4.2 - 2017-05-06<\\/h4>\\n<ul>\\n<li>Fix: Temporary patch for form field shortcode in some servers<\\/li>\\n<\\/ul>\\n<h4>1.4.1 - 2017-05-03<\\/h4>\\n<ul>\\n<li>Fix: Bug with custom success message in form widget<\\/li>\\n<li>Fix: Bug with meta data in email action<\\/li>\\n<\\/ul>\\n<h4>1.4.0 - 2017-05-03<\\/h4>\\n<ul>\\n<li>New: Forms: integration with MailChimp<\\/li>\\n<li>New: Forms: integration with MailPoet<\\/li>\\n<li>New: Forms: Added Email 2 action for email confirmation<\\/li>\\n<li>New: Forms: Added shortcodes for fields<\\/li>\\n<li>New: Forms: Added custom ID for fields<\\/li>\\n<li>New: Forms: Added option to edit email HTML template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>New: Added Login widget<\\/li>\\n<li>Tweak: Move <code>send_html<\\/code> control to <code>email_content_type<\\/code><\\/li>\\n<li>Fix: Email still sent even if validation failed in form widget<\\/li>\\n<\\/ul>\\n<h4>1.3.2 - 2017-05-01<\\/h4>\\n<ul>\\n<li>New: Added action <code>elementor_pro\\/init<\\/code> for better integration with Elementor Pro<\\/li>\\n<li>Fix: Posts without featured image in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1234\\\">#1234<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1382\\\">#1382<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA &amp; Honeypot fields with new method<\\/li>\\n<li>Fix: Added border width control in Share Buttons to avoid a glitch on Chrome browser<\\/li>\\n<li>Fix: Border radius glitch on hover in Share Buttons<\\/li>\\n<\\/ul>\\n<h4>1.3.1 - 2017-04-25<\\/h4>\\n<ul>\\n<li>Fix: Conflict update with revision history module<\\/li>\\n<\\/ul>\\n<h4>1.3.0 - 2017-04-25<\\/h4>\\n<ul>\\n<li>New: Added Share Buttons widget (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/social-sharing-buttons-is-it-possible\\/\\\">Topic<\\/a>)<\\/li>\\n<li>New: Added Custom CSS for Page Settings<\\/li>\\n<li>New: Added Masonry layout for Portfolio widget<\\/li>\\n<li>New: Added Cc &amp; Bcc options to email action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1181\\\">#1181<\\/a>)<\\/li>\\n<li>New: Introduced <code>ElementorProModulesFormsClassesAction_Base<\\/code> class for better 3rd party integration for forms<\\/li>\\n<li>Tweak: Debugger module now also shows errors from Pro<\\/li>\\n<li>Tweak: Added options for Elementor Library<\\/li>\\n<li>Tweak: New base posts module for optimized performance<\\/li>\\n<li>Tweak: Adjusting Posts \\/ Portfolio to the new structure<\\/li>\\n<li>Fix: Export for posts \\/ portfolio<\\/li>\\n<li>Fix: Duplicate repeater field with switcher control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1442\\\">#1442<\\/a>)<\\/li>\\n<li>Fix: Post per Page in the query control<\\/li>\\n<li>Fix: Metadata does not come through on form emails (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1566\\\">#1566<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.2.6 - 2017-04-19<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with WooCommerce 3.0 - Products &amp; Add to Cart widgets<\\/li>\\n<\\/ul>\\n<h4>1.2.5 - 2017-04-18<\\/h4>\\n<ul>\\n<li>Fix: Offset query for posts widgets (Posts, Portfolio and Products)<\\/li>\\n<\\/ul>\\n<h4>1.2.4 - 2017-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added Indian Rupee sign to Price Table widget<\\/li>\\n<li>Fix: Portfolio grid for IE11<\\/li>\\n<li>Fix: Link target blank in Price List widget<\\/li>\\n<li>Fix: Active item for filter bar in Portfolio widget<\\/li>\\n<\\/ul>\\n<h4>1.2.3 - 2017-03-06<\\/h4>\\n<ul>\\n<li>Tweak: Fully compatible with Elementor v1.3.0<\\/li>\\n<li>Tweak: Added trigger for after form submission in Forms widget<\\/li>\\n<li>Tweak: Changed handle name in reCAPTCHA field to avoid conflict with other contact forms<\\/li>\\n<li>Fix: Portfolio filter syntax in Non-Latin languages<\\/li>\\n<li>Fix: Added <code>no-repeat<\\/code> property for slide with <code>background-size:contain<\\/code><\\/li>\\n<li>Fix: Condition control &amp; Import value in Posts widgets<\\/li>\\n<li>Fix: Offset and Pagination in WordPress (<a href=\\\"https:\\/\\/codex.wordpress.org\\/Making_Custom_Queries_using_Offset_and_Pagination\\\">More Info<\\/a>)<\\/li>\\n<li>Fix: Submit handler bubbling for custom events in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.2.2 - 2017-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Change name from Side A\\/B to Front and Back in Flip Box widget<\\/li>\\n<li>Fix: Error when saving third party widgets in the global widget<\\/li>\\n<li>Fix: Image position &quot;none&quot; remains visible in editor preview (Posts)<\\/li>\\n<li>Fix: Hide the pagination when there are no links<\\/li>\\n<\\/ul>\\n<h4>1.2.1 - 2017-02-21<\\/h4>\\n<ul>\\n<li>Fix: Firefox Flip Box 3D compatibility<\\/li>\\n<\\/ul>\\n<h4>1.2.0 - 2017-02-21<\\/h4>\\n<ul>\\n<li>New: Added Flip Box widget<\\/li>\\n<li>New: Added Ken Burns effect for slides<\\/li>\\n<li>New: Added Masonry layout for Posts widget<\\/li>\\n<li>New: Added Pagination option for Posts widget<\\/li>\\n<li>Tweak: Added background size contain to slides<\\/li>\\n<li>Tweak: Improve Query control by preload items<\\/li>\\n<li>Fix: Text color for Checkbox and Radio fields<\\/li>\\n<\\/ul>\\n<h4>1.1.2 - 2017-02-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>aria-required<\\/code> for better accessibility in forms widget<\\/li>\\n<li>Fix: Conflict Call to <code>undefined<\\/code> method in Posts &amp; Portfolio widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1271\\\">#1271<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1266\\\">#1266<\\/a>)<\\/li>\\n<li>Fix: Submit button HTML after error sending<\\/li>\\n<li>Fix: Success message for <code>skip_email<\\/code> function<\\/li>\\n<li>Notice: Elementor 1.2.0 or later now required<\\/li>\\n<\\/ul>\\n<h4>1.1.1 - 2017-01-24<\\/h4>\\n<ul>\\n<li>Fix: Can\'t save global widgets when <code>WP_DEBUG<\\/code> is <code>true<\\/code><\\/li>\\n<li>Fix: Undefined variable in WC widgets<\\/li>\\n<li>Fix: Removed duplicate strings<\\/li>\\n<\\/ul>\\n<h4>1.1.0 - 2017-01-24<\\/h4>\\n<ul>\\n<li>New: Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/102\\\">#102<\\/a>)<\\/li>\\n<li>New: WooCommerce Add to Cart widget<\\/li>\\n<li>New: WooCommerce Categories widget<\\/li>\\n<li>New: WooCommerce Elements widget<\\/li>\\n<li>New: Honeypot field for Forms widgets<\\/li>\\n<li>Tweak: Added inline options for taxonomies &amp; authors if is less than 15 items<\\/li>\\n<li>Tweak: Added Required Mark for fields in Forms widget<\\/li>\\n<li>Fix: CSS selectors priority in Slides widget<\\/li>\\n<li>Fix: CSS bug in Price List widget<\\/li>\\n<li>Fix: Update all Post CSS files that includes specific Global Widget<\\/li>\\n<\\/ul>\\n<h4>1.0.9 - 2017-01-18<\\/h4>\\n<ul>\\n<li>Fix: Auto complete bug in query controls<\\/li>\\n<li>Fix: Render template with escaping slashes<\\/li>\\n<li>Fix: Reply-to field in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.0.8 - 2017-01-11<\\/h4>\\n<ul>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Removed go pro link from plugins page in admin<\\/li>\\n<\\/ul>\\n<h4>1.0.7 - 2017-01-05<\\/h4>\\n<ul>\\n<li>Tweak: Added filter by featured \\/ sale for WC Products widget<\\/li>\\n<li>Tweak: Added author control in Portfolio widget<\\/li>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Added support for empty image ratio<\\/li>\\n<li>Fix: Avoid nesting a sidebar within a template that will appear in the sidebar itself<\\/li>\\n<\\/ul>\\n<h4>1.0.6 - 2017-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Added Auto-updates for local translation files<\\/li>\\n<li>Fix: Custom CSS for Global widgets<\\/li>\\n<li>Fix: Remove <code>nonce<\\/code> field (Fix some cache plugins)<\\/li>\\n<\\/ul>\\n<h4>1.0.5 - 2016-12-27<\\/h4>\\n<ul>\\n<li>Fix: Slide element bug fix - \'Link apply on\' logic<\\/li>\\n<li>Fix: Removed unique wrapper for Custom CSS in order to allow media queries (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1086\\\">#1086<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.0.4 - 2016-12-21<\\/h4>\\n<ul>\\n<li>Tweak: Mobile Editing for fields in the form widget<\\/li>\\n<li>Tweak: Mobile Editing for posts<\\/li>\\n<li>Tweak: Allow send form as HTML<\\/li>\\n<li>Tweak: Improved auto upgrades for Multisite installation<\\/li>\\n<li>Tweak: Improve editor rendering experience for Portfolio widget<\\/li>\\n<li>Fix: Posts widget check if image exist<\\/li>\\n<li>Fix: Changed the clone method for global widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1042\\\">#1042<\\/a>)<\\/li>\\n<li>Fix: Bug slides in RTL (removed direction control)<\\/li>\\n<li>Fix: Slides with no height jumps when changing slides<\\/li>\\n<\\/ul>\\n<h4>1.0.3 - 2016-12-13<\\/h4>\\n<ul>\\n<li>Fix: Added escape placeholder for HTML Entities in form widget<\\/li>\\n<li>Fix: Countdown widget RTL bug<\\/li>\\n<li>Fix: Remove redundant #elementor selector for control style<\\/li>\\n<li>Fix: Added prefixing with \'0\' for one digit number in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>1.0.2 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: Page layout collapses when inserting reCAPTCHA field in Form<\\/li>\\n<\\/ul>\\n<h4>1.0.1 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: WordPress widgets disappear from Editor when Elementor Pro active<\\/li>\\n<\\/ul>\\n<h4>1.0.0 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Initial release<\\/li>\\n<\\/ul>\\\";}\",\"new_version\":\"3.28.4\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.8.1\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdENWc3oyRTdvUHdORmJBT2VzODkxNjk1NzExNTQzVUJIdFNCQ3YxT2ZyIiwidXJsIjoiaHR0cDovL2F2LWFkdmVydGlzaW5nLmNvbS9iZXlvbmRjIiwiZG93bmxvYWRfYmV0YSI6ZmFsc2UsImZpbGVfa2V5IjoiMSIsImlhdCI6MTc0NzU2NTMwNywiZXhwIjoxNzQ3NjUxNzA3fQ.qJLI_aglmSTCrlu41bEa0gKYsHvc2W1Jem3VysHDf2k\\/package_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdENWc3oyRTdvUHdORmJBT2VzODkxNjk1NzExNTQzVUJIdFNCQ3YxT2ZyIiwidXJsIjoiaHR0cDovL2F2LWFkdmVydGlzaW5nLmNvbS9iZXlvbmRjIiwiZG93bmxvYWRfYmV0YSI6ZmFsc2UsImZpbGVfa2V5IjoiMSIsImlhdCI6MTc0NzU2NTMwNywiZXhwIjoxNzQ3NjUxNzA3fQ.qJLI_aglmSTCrlu41bEa0gKYsHvc2W1Jem3VysHDf2k\\/package_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"},\"canary_deployment\":{\"plugin_info\":{\"new_version\":\"3.7.0\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.8.1\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdENWc3oyRTdvUHdORmJBT2VzODkxNjk1NzExNTQzVUJIdFNCQ3YxT2ZyIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cDovL2F2LWFkdmVydGlzaW5nLmNvbS9iZXlvbmRjIiwiaWF0IjoxNzQ3NTY1MzA3LCJleHAiOjE3NDc2NTE3MDd9.ifrWAErTOIIYZ9kqsxwIVCZyjJCA3_z4HcARAQxk1Bs\\/previous_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdENWc3oyRTdvUHdORmJBT2VzODkxNjk1NzExNTQzVUJIdFNCQ3YxT2ZyIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cDovL2F2LWFkdmVydGlzaW5nLmNvbS9iZXlvbmRjIiwiaWF0IjoxNzQ3NTY1MzA3LCJleHAiOjE3NDc2NTE3MDd9.ifrWAErTOIIYZ9kqsxwIVCZyjJCA3_z4HcARAQxk1Bs\\/previous_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"}},\"conditions\":[[{\"type\":\"language\",\"languages\":[\"he_IL\",\"nl_NL\",\"en_GB\",\"en_NZ\",\"en_ZA\",\"en_AU\",\"en_CA\",\"sv_SE\",\"da_DK\",\"fr_FR\",\"nl_NL\",\"nb_NO\",\"de_AT\",\"fi\",\"it_IT\",\"nn_NO\",\"de_CH\",\"en_GB\",\"is_IS\",\"ga\",\"fr_BE\",\"nl_BE\",\"ast\",\"lb_LU\",\"es_ES\",\"pt_PT\",\"mlt\"],\"operator\":\"in\"}]]},\"cloud\":false}\";}', 'off');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(3358, 'litespeed.conf._version', '7.1', 'auto'),
(3359, 'litespeed.conf.hash', 'jcfBzeivxI4D2A0mvVTfOMhUNQfTdHvy', 'auto'),
(3360, 'litespeed.conf.api_key', '', 'auto'),
(3361, 'litespeed.conf.auto_upgrade', '', 'auto'),
(3362, 'litespeed.conf.server_ip', '', 'auto'),
(3363, 'litespeed.conf.guest', '', 'auto'),
(3364, 'litespeed.conf.guest_optm', '', 'auto'),
(3365, 'litespeed.conf.news', '1', 'auto'),
(3366, 'litespeed.conf.guest_uas', '[\"Lighthouse\",\"GTmetrix\",\"Google\",\"Pingdom\",\"bot\",\"spider\",\"PTST\",\"HeadlessChrome\"]', 'auto'),
(3367, 'litespeed.conf.guest_ips', '[\"208.70.247.157\",\"172.255.48.130\",\"172.255.48.131\",\"172.255.48.132\",\"172.255.48.133\",\"172.255.48.134\",\"172.255.48.135\",\"172.255.48.136\",\"172.255.48.137\",\"172.255.48.138\",\"172.255.48.139\",\"172.255.48.140\",\"172.255.48.141\",\"172.255.48.142\",\"172.255.48.143\",\"172.255.48.144\",\"172.255.48.145\",\"172.255.48.146\",\"172.255.48.147\",\"52.229.122.240\",\"104.214.72.101\",\"13.66.7.11\",\"13.85.24.83\",\"13.85.24.90\",\"13.85.82.26\",\"40.74.242.253\",\"40.74.243.13\",\"40.74.243.176\",\"104.214.48.247\",\"157.55.189.189\",\"104.214.110.135\",\"70.37.83.240\",\"65.52.36.250\",\"13.78.216.56\",\"52.162.212.163\",\"23.96.34.105\",\"65.52.113.236\",\"172.255.61.34\",\"172.255.61.35\",\"172.255.61.36\",\"172.255.61.37\",\"172.255.61.38\",\"172.255.61.39\",\"172.255.61.40\",\"104.41.2.19\",\"191.235.98.164\",\"191.235.99.221\",\"191.232.194.51\",\"52.237.235.185\",\"52.237.250.73\",\"52.237.236.145\",\"104.211.143.8\",\"104.211.165.53\",\"52.172.14.87\",\"40.83.89.214\",\"52.175.57.81\",\"20.188.63.151\",\"20.52.36.49\",\"52.246.165.153\",\"51.144.102.233\",\"13.76.97.224\",\"102.133.169.66\",\"52.231.199.170\",\"13.53.162.7\",\"40.123.218.94\"]', 'auto'),
(3368, 'litespeed.conf.cache', '1', 'auto'),
(3369, 'litespeed.conf.cache-priv', '1', 'auto'),
(3370, 'litespeed.conf.cache-commenter', '1', 'auto'),
(3371, 'litespeed.conf.cache-rest', '1', 'auto'),
(3372, 'litespeed.conf.cache-page_login', '1', 'auto'),
(3373, 'litespeed.conf.cache-resources', '1', 'auto'),
(3374, 'litespeed.conf.cache-mobile', '1', 'auto'),
(3375, 'litespeed.conf.cache-mobile_rules', '[\"Mobile\",\"Android\",\"Silk\\/\",\"Kindle\",\"BlackBerry\",\"Opera Mini\",\"Opera Mobi\"]', 'auto'),
(3376, 'litespeed.conf.cache-browser', '1', 'auto'),
(3377, 'litespeed.conf.cache-exc_useragents', '[]', 'auto'),
(3378, 'litespeed.conf.cache-exc_cookies', '[]', 'auto'),
(3379, 'litespeed.conf.cache-exc_qs', '[]', 'auto'),
(3380, 'litespeed.conf.cache-exc_cat', '[]', 'auto'),
(3381, 'litespeed.conf.cache-exc_tag', '[]', 'auto'),
(3382, 'litespeed.conf.cache-force_uri', '[]', 'auto'),
(3383, 'litespeed.conf.cache-force_pub_uri', '[]', 'auto'),
(3384, 'litespeed.conf.cache-priv_uri', '[]', 'auto'),
(3385, 'litespeed.conf.cache-exc', '[]', 'auto'),
(3386, 'litespeed.conf.cache-exc_roles', '[]', 'auto'),
(3387, 'litespeed.conf.cache-drop_qs', '[\"fbclid\",\"gclid\",\"utm*\",\"_ga\"]', 'auto'),
(3388, 'litespeed.conf.cache-ttl_pub', '604800', 'auto'),
(3389, 'litespeed.conf.cache-ttl_priv', '1800', 'auto'),
(3390, 'litespeed.conf.cache-ttl_frontpage', '604800', 'auto'),
(3391, 'litespeed.conf.cache-ttl_feed', '604800', 'auto'),
(3392, 'litespeed.conf.cache-ttl_rest', '604800', 'auto'),
(3393, 'litespeed.conf.cache-ttl_browser', '31557600', 'auto'),
(3394, 'litespeed.conf.cache-ttl_status', '[\"404 3600\",\"500 600\"]', 'auto'),
(3395, 'litespeed.conf.cache-login_cookie', '', 'auto'),
(3396, 'litespeed.conf.cache-ajax_ttl', '[]', 'auto'),
(3397, 'litespeed.conf.cache-vary_cookies', '[]', 'auto'),
(3398, 'litespeed.conf.cache-vary_group', '[]', 'auto'),
(3399, 'litespeed.conf.purge-upgrade', '1', 'auto'),
(3400, 'litespeed.conf.purge-stale', '', 'auto'),
(3401, 'litespeed.conf.purge-post_all', '', 'auto'),
(3402, 'litespeed.conf.purge-post_f', '1', 'auto'),
(3403, 'litespeed.conf.purge-post_h', '1', 'auto'),
(3404, 'litespeed.conf.purge-post_p', '1', 'auto'),
(3405, 'litespeed.conf.purge-post_pwrp', '1', 'auto'),
(3406, 'litespeed.conf.purge-post_a', '1', 'auto'),
(3407, 'litespeed.conf.purge-post_y', '', 'auto'),
(3408, 'litespeed.conf.purge-post_m', '1', 'auto'),
(3409, 'litespeed.conf.purge-post_d', '', 'auto'),
(3410, 'litespeed.conf.purge-post_t', '1', 'auto'),
(3411, 'litespeed.conf.purge-post_pt', '1', 'auto'),
(3412, 'litespeed.conf.purge-timed_urls', '[]', 'auto'),
(3413, 'litespeed.conf.purge-timed_urls_time', '', 'auto'),
(3414, 'litespeed.conf.purge-hook_all', '[\"switch_theme\",\"wp_create_nav_menu\",\"wp_update_nav_menu\",\"wp_delete_nav_menu\",\"create_term\",\"edit_terms\",\"delete_term\",\"add_link\",\"edit_link\",\"delete_link\"]', 'auto'),
(3415, 'litespeed.conf.esi', '', 'auto'),
(3416, 'litespeed.conf.esi-cache_admbar', '1', 'auto'),
(3417, 'litespeed.conf.esi-cache_commform', '1', 'auto'),
(3418, 'litespeed.conf.esi-nonce', '[\"stats_nonce\",\"subscribe_nonce\"]', 'auto'),
(3419, 'litespeed.conf.util-instant_click', '', 'auto'),
(3420, 'litespeed.conf.util-no_https_vary', '', 'auto'),
(3421, 'litespeed.conf.debug-disable_all', '', 'auto'),
(3422, 'litespeed.conf.debug', '', 'auto'),
(3423, 'litespeed.conf.debug-ips', '[\"127.0.0.1\"]', 'auto'),
(3424, 'litespeed.conf.debug-level', '', 'auto'),
(3425, 'litespeed.conf.debug-filesize', '3', 'auto'),
(3426, 'litespeed.conf.debug-collapse_qs', '', 'auto'),
(3427, 'litespeed.conf.debug-inc', '[]', 'auto'),
(3428, 'litespeed.conf.debug-exc', '[]', 'auto'),
(3429, 'litespeed.conf.debug-exc_strings', '[]', 'auto'),
(3430, 'litespeed.conf.db_optm-revisions_max', '0', 'auto'),
(3431, 'litespeed.conf.db_optm-revisions_age', '0', 'auto'),
(3432, 'litespeed.conf.optm-css_min', '', 'auto'),
(3433, 'litespeed.conf.optm-css_comb', '', 'auto'),
(3434, 'litespeed.conf.optm-css_comb_ext_inl', '1', 'auto'),
(3435, 'litespeed.conf.optm-ucss', '', 'auto'),
(3436, 'litespeed.conf.optm-ucss_inline', '', 'auto'),
(3437, 'litespeed.conf.optm-ucss_whitelist', '[]', 'auto'),
(3438, 'litespeed.conf.optm-ucss_file_exc_inline', '[]', 'auto'),
(3439, 'litespeed.conf.optm-ucss_exc', '[]', 'auto'),
(3440, 'litespeed.conf.optm-css_exc', '[]', 'auto'),
(3441, 'litespeed.conf.optm-js_min', '', 'auto'),
(3442, 'litespeed.conf.optm-js_comb', '', 'auto'),
(3443, 'litespeed.conf.optm-js_comb_ext_inl', '1', 'auto'),
(3444, 'litespeed.conf.optm-js_delay_inc', '[]', 'auto'),
(3445, 'litespeed.conf.optm-js_exc', '[\"jquery.js\",\"jquery.min.js\"]', 'auto'),
(3446, 'litespeed.conf.optm-html_min', '', 'auto'),
(3447, 'litespeed.conf.optm-html_lazy', '[]', 'auto'),
(3448, 'litespeed.conf.optm-html_skip_comment', '[]', 'auto'),
(3449, 'litespeed.conf.optm-qs_rm', '', 'auto'),
(3450, 'litespeed.conf.optm-ggfonts_rm', '', 'auto'),
(3451, 'litespeed.conf.optm-css_async', '', 'auto'),
(3452, 'litespeed.conf.optm-ccss_per_url', '', 'auto'),
(3453, 'litespeed.conf.optm-ccss_sep_posttype', '[\"page\"]', 'auto'),
(3454, 'litespeed.conf.optm-ccss_sep_uri', '[]', 'auto'),
(3455, 'litespeed.conf.optm-ccss_whitelist', '[]', 'auto'),
(3456, 'litespeed.conf.optm-css_async_inline', '1', 'auto'),
(3457, 'litespeed.conf.optm-css_font_display', '', 'auto'),
(3458, 'litespeed.conf.optm-js_defer', '0', 'auto'),
(3459, 'litespeed.conf.optm-emoji_rm', '', 'auto'),
(3460, 'litespeed.conf.optm-noscript_rm', '', 'auto'),
(3461, 'litespeed.conf.optm-ggfonts_async', '', 'auto'),
(3462, 'litespeed.conf.optm-exc_roles', '[]', 'auto'),
(3463, 'litespeed.conf.optm-ccss_con', '', 'auto'),
(3464, 'litespeed.conf.optm-js_defer_exc', '[\"jquery.js\",\"jquery.min.js\",\"gtm.js\",\"analytics.js\"]', 'auto'),
(3465, 'litespeed.conf.optm-gm_js_exc', '[]', 'auto'),
(3466, 'litespeed.conf.optm-dns_prefetch', '[]', 'auto'),
(3467, 'litespeed.conf.optm-dns_prefetch_ctrl', '', 'auto'),
(3468, 'litespeed.conf.optm-dns_preconnect', '[]', 'auto'),
(3469, 'litespeed.conf.optm-exc', '[]', 'auto'),
(3470, 'litespeed.conf.optm-guest_only', '1', 'auto'),
(3471, 'litespeed.conf.object', '', 'auto'),
(3472, 'litespeed.conf.object-kind', '', 'auto'),
(3473, 'litespeed.conf.object-host', 'localhost', 'auto'),
(3474, 'litespeed.conf.object-port', '11211', 'auto'),
(3475, 'litespeed.conf.object-life', '360', 'auto'),
(3476, 'litespeed.conf.object-persistent', '1', 'auto'),
(3477, 'litespeed.conf.object-admin', '1', 'auto'),
(3478, 'litespeed.conf.object-transients', '1', 'auto'),
(3479, 'litespeed.conf.object-db_id', '0', 'auto'),
(3480, 'litespeed.conf.object-user', '', 'auto'),
(3481, 'litespeed.conf.object-pswd', '', 'auto'),
(3482, 'litespeed.conf.object-global_groups', '[\"users\",\"userlogins\",\"useremail\",\"userslugs\",\"usermeta\",\"user_meta\",\"site-transient\",\"site-options\",\"site-lookup\",\"site-details\",\"blog-lookup\",\"blog-details\",\"blog-id-cache\",\"rss\",\"global-posts\",\"global-cache-test\"]', 'auto'),
(3483, 'litespeed.conf.object-non_persistent_groups', '[\"comment\",\"counts\",\"plugins\",\"wc_session_id\"]', 'auto'),
(3484, 'litespeed.conf.discuss-avatar_cache', '', 'auto'),
(3485, 'litespeed.conf.discuss-avatar_cron', '', 'auto'),
(3486, 'litespeed.conf.discuss-avatar_cache_ttl', '604800', 'auto'),
(3487, 'litespeed.conf.optm-localize', '', 'auto'),
(3488, 'litespeed.conf.optm-localize_domains', '[\"### Popular scripts ###\",\"https:\\/\\/platform.twitter.com\\/widgets.js\",\"https:\\/\\/connect.facebook.net\\/en_US\\/fbevents.js\"]', 'auto'),
(3489, 'litespeed.conf.media-lazy', '', 'auto'),
(3490, 'litespeed.conf.media-lazy_placeholder', '', 'auto'),
(3491, 'litespeed.conf.media-placeholder_resp', '', 'auto'),
(3492, 'litespeed.conf.media-placeholder_resp_color', '#cfd4db', 'auto'),
(3493, 'litespeed.conf.media-placeholder_resp_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"{width}\" height=\"{height}\" viewBox=\"0 0 {width} {height}\"><rect width=\"100%\" height=\"100%\" style=\"fill:{color};fill-opacity: 0.1;\"/></svg>', 'auto'),
(3494, 'litespeed.conf.media-lqip', '', 'auto'),
(3495, 'litespeed.conf.media-lqip_qual', '4', 'auto'),
(3496, 'litespeed.conf.media-lqip_min_w', '150', 'auto'),
(3497, 'litespeed.conf.media-lqip_min_h', '150', 'auto'),
(3498, 'litespeed.conf.media-placeholder_resp_async', '1', 'auto'),
(3499, 'litespeed.conf.media-iframe_lazy', '', 'auto'),
(3500, 'litespeed.conf.media-add_missing_sizes', '', 'auto'),
(3501, 'litespeed.conf.media-lazy_exc', '[]', 'auto'),
(3502, 'litespeed.conf.media-lazy_cls_exc', '[\"wmu-preview-img\"]', 'auto'),
(3503, 'litespeed.conf.media-lazy_parent_cls_exc', '[]', 'auto'),
(3504, 'litespeed.conf.media-iframe_lazy_cls_exc', '[]', 'auto'),
(3505, 'litespeed.conf.media-iframe_lazy_parent_cls_exc', '[]', 'auto'),
(3506, 'litespeed.conf.media-lazy_uri_exc', '[]', 'auto'),
(3507, 'litespeed.conf.media-lqip_exc', '[]', 'auto'),
(3508, 'litespeed.conf.media-vpi', '', 'auto'),
(3509, 'litespeed.conf.media-vpi_cron', '', 'auto'),
(3510, 'litespeed.conf.img_optm-auto', '1', 'auto'),
(3511, 'litespeed.conf.img_optm-ori', '1', 'auto'),
(3512, 'litespeed.conf.img_optm-rm_bkup', '', 'auto'),
(3513, 'litespeed.conf.img_optm-webp', '1', 'auto'),
(3514, 'litespeed.conf.img_optm-lossless', '', 'auto'),
(3515, 'litespeed.conf.img_optm-exif', '', 'auto'),
(3516, 'litespeed.conf.img_optm-webp_attr', '[\"img.src\",\"div.data-thumb\",\"img.data-src\",\"img.data-lazyload\",\"div.data-large_image\",\"img.retina_logo_url\",\"div.data-parallax-image\",\"div.data-vc-parallax-image\",\"video.poster\"]', 'auto'),
(3517, 'litespeed.conf.img_optm-webp_replace_srcset', '1', 'auto'),
(3518, 'litespeed.conf.img_optm-jpg_quality', '82', 'auto'),
(3519, 'litespeed.conf.crawler', '', 'auto'),
(3520, 'litespeed.conf.crawler-crawl_interval', '302400', 'auto'),
(3521, 'litespeed.conf.crawler-load_limit', '1', 'auto'),
(3522, 'litespeed.conf.crawler-sitemap', '', 'auto'),
(3523, 'litespeed.conf.crawler-roles', '[]', 'auto'),
(3524, 'litespeed.conf.crawler-cookies', '[]', 'auto'),
(3525, 'litespeed.conf.misc-heartbeat_front', '1', 'auto'),
(3526, 'litespeed.conf.misc-heartbeat_front_ttl', '0', 'auto'),
(3527, 'litespeed.conf.misc-heartbeat_back', '', 'auto'),
(3528, 'litespeed.conf.misc-heartbeat_back_ttl', '60', 'auto'),
(3529, 'litespeed.conf.misc-heartbeat_editor', '', 'auto'),
(3530, 'litespeed.conf.misc-heartbeat_editor_ttl', '15', 'auto'),
(3531, 'litespeed.conf.cdn', '', 'auto'),
(3532, 'litespeed.conf.cdn-ori', '[]', 'auto'),
(3533, 'litespeed.conf.cdn-ori_dir', '[\"wp-content\",\"wp-includes\"]', 'auto'),
(3534, 'litespeed.conf.cdn-exc', '[]', 'auto'),
(3535, 'litespeed.conf.cdn-quic', '', 'auto'),
(3536, 'litespeed.conf.cdn-cloudflare', '', 'auto'),
(3537, 'litespeed.conf.cdn-cloudflare_email', '', 'auto'),
(3538, 'litespeed.conf.cdn-cloudflare_key', '', 'auto'),
(3539, 'litespeed.conf.cdn-cloudflare_name', '', 'auto'),
(3540, 'litespeed.conf.cdn-cloudflare_zone', '', 'auto'),
(3541, 'litespeed.conf.cdn-mapping', '[{\"url\":\"\",\"inc_img\":\"1\",\"inc_css\":\"1\",\"inc_js\":\"1\",\"filetype\":[\".aac\",\".css\",\".eot\",\".gif\",\".jpeg\",\".jpg\",\".js\",\".less\",\".mp3\",\".mp4\",\".ogg\",\".otf\",\".pdf\",\".png\",\".svg\",\".ttf\",\".webp\",\".woff\",\".woff2\"]}]', 'auto'),
(3542, 'litespeed.conf.cdn-attr', '[\".src\",\".data-src\",\".href\",\".poster\",\"source.srcset\"]', 'auto'),
(3543, 'litespeed.conf.qc-nameservers', '', 'auto'),
(3544, 'litespeed.conf.qc-cname', '', 'auto'),
(3545, 'litespeed.cloud._summary', '{\"curr_request.ver_check\":0,\"last_request.ver_check\":1747565314}', 'auto'),
(3552, 'litespeed.crawler.bypass_list', '[]', 'auto'),
(3553, 'litespeed.preset._summary', '{\"preset\":\"basic\",\"preset_timestamp\":1774404914}', 'auto'),
(3731, 'wp_notes_notify', '1', 'on'),
(3732, 'can_compress_scripts', '0', 'auto'),
(4081, '_site_transient_update_core', 'O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.9.4.zip\";s:6:\"locale\";s:2:\"en\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.9.4.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.9.4-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.9.4-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.9.4\";s:7:\"version\";s:5:\"6.9.4\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1775018695;s:15:\"version_checked\";s:5:\"6.9.4\";s:12:\"translations\";a:0:{}}', 'off'),
(4158, '_site_transient_timeout_wp_theme_files_patterns-9064cb816e2b6479594c32f442d79811', '1774406714', 'off'),
(4159, '_site_transient_wp_theme_files_patterns-9064cb816e2b6479594c32f442d79811', 'a:2:{s:7:\"version\";s:5:\"4.0.7\";s:8:\"patterns\";a:0:{}}', 'off'),
(4203, '_site_transient_timeout_theme_roots', '1775020496', 'off'),
(4204, '_site_transient_theme_roots', 'a:5:{s:7:\"oceanwp\";s:7:\"/themes\";s:16:\"twentytwentyfive\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}', 'off'),
(4206, '_site_transient_update_plugins', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1775018709;s:8:\"response\";a:5:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":13:{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:3:\"5.6\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/akismet.5.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=2818463\";s:2:\"1x\";s:60:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=2818463\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/akismet/assets/banner-1544x500.png?rev=2900731\";s:2:\"1x\";s:62:\"https://ps.w.org/akismet/assets/banner-772x250.png?rev=2900731\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";s:6:\"tested\";s:5:\"6.9.4\";s:12:\"requires_php\";s:3:\"7.2\";s:16:\"requires_plugins\";a:0:{}}s:23:\"elementor/elementor.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"4.0.0\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.0.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.gif?rev=3444228\";s:2:\"1x\";s:62:\"https://ps.w.org/elementor/assets/icon-128x128.gif?rev=3444228\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=3443226\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=3443226\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.6\";s:6:\"tested\";s:5:\"6.9.4\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:35:\"litespeed-cache/litespeed-cache.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:29:\"w.org/plugins/litespeed-cache\";s:4:\"slug\";s:15:\"litespeed-cache\";s:6:\"plugin\";s:35:\"litespeed-cache/litespeed-cache.php\";s:11:\"new_version\";s:7:\"7.8.0.1\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/litespeed-cache/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/litespeed-cache.7.8.0.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/litespeed-cache/assets/icon-256x256.png?rev=2554181\";s:2:\"1x\";s:68:\"https://ps.w.org/litespeed-cache/assets/icon-128x128.png?rev=2554181\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/litespeed-cache/assets/banner-1544x500.png?rev=2554181\";s:2:\"1x\";s:70:\"https://ps.w.org/litespeed-cache/assets/banner-772x250.png?rev=2554181\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.3\";s:6:\"tested\";s:5:\"6.9.4\";s:12:\"requires_php\";s:3:\"7.2\";s:16:\"requires_plugins\";a:0:{}}s:29:\"use-any-font/use-any-font.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:26:\"w.org/plugins/use-any-font\";s:4:\"slug\";s:12:\"use-any-font\";s:6:\"plugin\";s:29:\"use-any-font/use-any-font.php\";s:11:\"new_version\";s:6:\"6.3.14\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/use-any-font/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/use-any-font.6.3.14.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:65:\"https://ps.w.org/use-any-font/assets/icon-128x128.png?rev=2460363\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/use-any-font/assets/banner-1544x500.jpg?rev=3089452\";s:2:\"1x\";s:67:\"https://ps.w.org/use-any-font/assets/banner-772x250.png?rev=3089452\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";s:6:\"tested\";s:5:\"6.9.4\";s:12:\"requires_php\";s:3:\"7.0\";s:16:\"requires_plugins\";a:0:{}}s:31:\"elementor-pro/elementor-pro.php\";O:8:\"stdClass\":17:{s:14:\"stable_version\";s:6:\"3.28.4\";s:12:\"last_updated\";s:19:\"2025-05-05 11:54:40\";s:11:\"new_version\";s:6:\"3.28.4\";s:4:\"name\";s:13:\"Elementor Pro\";s:4:\"slug\";s:13:\"elementor-pro\";s:3:\"url\";s:36:\"https://elementor.com/pro/changelog/\";s:8:\"homepage\";s:26:\"https://elementor.com/pro/\";s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.8.1\";s:18:\"elementor_requires\";s:5:\"3.0.1\";s:7:\"package\";s:387:\"https://plugin-downloads.elementor.com/v2/package_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdENWc3oyRTdvUHdORmJBT2VzODkxNjk1NzExNTQzVUJIdFNCQ3YxT2ZyIiwidXJsIjoiaHR0cDovL2F2LWFkdmVydGlzaW5nLmNvbS9iZXlvbmRjIiwiZG93bmxvYWRfYmV0YSI6ZmFsc2UsImZpbGVfa2V5IjoiMSIsImlhdCI6MTc0NzU2NTMwNywiZXhwIjoxNzQ3NjUxNzA3fQ.qJLI_aglmSTCrlu41bEa0gKYsHvc2W1Jem3VysHDf2k/package_download\";s:13:\"download_link\";s:387:\"https://plugin-downloads.elementor.com/v2/package_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdENWc3oyRTdvUHdORmJBT2VzODkxNjk1NzExNTQzVUJIdFNCQ3YxT2ZyIiwidXJsIjoiaHR0cDovL2F2LWFkdmVydGlzaW5nLmNvbS9iZXlvbmRjIiwiZG93bmxvYWRfYmV0YSI6ZmFsc2UsImZpbGVfa2V5IjoiMSIsImlhdCI6MTc0NzU2NTMwNywiZXhwIjoxNzQ3NjUxNzA3fQ.qJLI_aglmSTCrlu41bEa0gKYsHvc2W1Jem3VysHDf2k/package_download\";s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:5:\"icons\";a:1:{s:3:\"svg\";s:75:\"https://storage.googleapis.com/web-public-files/Web%20Assets/icons/icon.svg\";}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:12:{s:11:\"new_version\";s:5:\"3.7.0\";s:4:\"name\";s:13:\"Elementor Pro\";s:4:\"slug\";s:13:\"elementor-pro\";s:3:\"url\";s:36:\"https://elementor.com/pro/changelog/\";s:8:\"homepage\";s:26:\"https://elementor.com/pro/\";s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.8.1\";s:18:\"elementor_requires\";s:5:\"3.0.1\";s:7:\"package\";s:363:\"https://plugin-downloads.elementor.com/v2/previous_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdENWc3oyRTdvUHdORmJBT2VzODkxNjk1NzExNTQzVUJIdFNCQ3YxT2ZyIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cDovL2F2LWFkdmVydGlzaW5nLmNvbS9iZXlvbmRjIiwiaWF0IjoxNzQ3NTY1MzA3LCJleHAiOjE3NDc2NTE3MDd9.ifrWAErTOIIYZ9kqsxwIVCZyjJCA3_z4HcARAQxk1Bs/previous_download\";s:13:\"download_link\";s:363:\"https://plugin-downloads.elementor.com/v2/previous_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdENWc3oyRTdvUHdORmJBT2VzODkxNjk1NzExNTQzVUJIdFNCQ3YxT2ZyIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cDovL2F2LWFkdmVydGlzaW5nLmNvbS9iZXlvbmRjIiwiaWF0IjoxNzQ3NTY1MzA3LCJleHAiOjE3NDc2NTE3MDd9.ifrWAErTOIIYZ9kqsxwIVCZyjJCA3_z4HcARAQxk1Bs/previous_download\";s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:5:\"icons\";a:1:{s:3:\"svg\";s:75:\"https://storage.googleapis.com/web-public-files/Web%20Assets/icons/icon.svg\";}}s:10:\"conditions\";a:1:{i:0;a:1:{i:0;a:3:{s:4:\"type\";s:8:\"language\";s:9:\"languages\";a:27:{i:0;s:5:\"he_IL\";i:1;s:5:\"nl_NL\";i:2;s:5:\"en_GB\";i:3;s:5:\"en_NZ\";i:4;s:5:\"en_ZA\";i:5;s:5:\"en_AU\";i:6;s:5:\"en_CA\";i:7;s:5:\"sv_SE\";i:8;s:5:\"da_DK\";i:9;s:5:\"fr_FR\";i:10;s:5:\"nl_NL\";i:11;s:5:\"nb_NO\";i:12;s:5:\"de_AT\";i:13;s:2:\"fi\";i:14;s:5:\"it_IT\";i:15;s:5:\"nn_NO\";i:16;s:5:\"de_CH\";i:17;s:5:\"en_GB\";i:18;s:5:\"is_IS\";i:19;s:2:\"ga\";i:20;s:5:\"fr_BE\";i:21;s:5:\"nl_BE\";i:22;s:3:\"ast\";i:23;s:5:\"lb_LU\";i:24;s:5:\"es_ES\";i:25;s:5:\"pt_PT\";i:26;s:3:\"mlt\";}s:8:\"operator\";s:2:\"in\";}}}}s:5:\"cloud\";b:0;s:6:\"plugin\";s:31:\"elementor-pro/elementor-pro.php\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:0:{}s:7:\"checked\";a:6:{s:19:\"akismet/akismet.php\";s:5:\"5.3.7\";s:23:\"elementor/elementor.php\";s:6:\"3.28.3\";s:31:\"elementor-pro/elementor-pro.php\";s:6:\"3.28.4\";s:35:\"litespeed-cache/litespeed-cache.php\";s:3:\"7.1\";s:63:\"unlimited-addon-for-elementor/unlimited-addon-for-elementor.php\";s:5:\"2.0.0\";s:29:\"use-any-font/use-any-font.php\";s:6:\"6.3.12\";}}', 'off'),
(4207, '_site_transient_update_themes', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1775018711;s:7:\"checked\";a:3:{s:7:\"oceanwp\";s:5:\"4.0.7\";s:16:\"twentytwentyfive\";s:3:\"1.1\";s:16:\"twentytwentyfour\";s:3:\"1.3\";}s:8:\"response\";a:3:{s:7:\"oceanwp\";a:6:{s:5:\"theme\";s:7:\"oceanwp\";s:11:\"new_version\";s:5:\"4.1.5\";s:3:\"url\";s:37:\"https://wordpress.org/themes/oceanwp/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/theme/oceanwp.4.1.5.zip\";s:8:\"requires\";s:3:\"5.6\";s:12:\"requires_php\";s:3:\"7.4\";}s:16:\"twentytwentyfive\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfive\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfive/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfive.1.4.zip\";s:8:\"requires\";s:3:\"6.7\";s:12:\"requires_php\";s:3:\"7.2\";}s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.4.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}', 'off');

-- --------------------------------------------------------

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

CREATE TABLE `wp_postmeta` (
  `meta_id` bigint(20) UNSIGNED NOT NULL,
  `post_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

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

INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3, 6, '_elementor_edit_mode', 'builder'),
(4, 6, '_elementor_template_type', 'kit'),
(22, 13, '_edit_lock', '1696596488:1'),
(23, 13, '_elementor_edit_mode', 'builder'),
(24, 13, '_elementor_template_type', 'wp-page'),
(25, 13, '_elementor_version', '3.16.4'),
(27, 15, '_elementor_edit_mode', 'builder'),
(28, 15, '_elementor_template_type', 'wp-page'),
(29, 15, '_elementor_version', '3.16.4'),
(30, 16, '_elementor_edit_mode', 'builder'),
(31, 16, '_elementor_template_type', 'wp-page'),
(32, 16, '_elementor_version', '3.16.4'),
(33, 13, '_wp_page_template', 'elementor_header_footer'),
(34, 13, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"absolute\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"home-slider\"},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Benne\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material2.jpeg\",\"id\":365,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material3.jpeg\",\"id\":364,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Benne\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"},{\"id\":400,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery7.jpeg\"},{\"id\":401,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery6.jpeg\"},{\"id\":402,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery5.jpeg\"},{\"id\":403,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery4.jpeg\"},{\"id\":404,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery3.jpeg\"},{\"id\":405,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery1.jpeg\"}],\"image_stretch\":\"yes\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"autoplay_speed\":3000,\"arrows_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Benne\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kithchens.jpeg\",\"id\":352,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/bathrooms.jpeg\",\"id\":351,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24.871,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.373,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/living-room.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/by-style-home.jpeg\",\"id\":354,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Benne\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"flex_justify_content\":\"center\",\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"size\":12.355,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"size\":-2.998,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/showroom.jpeg\",\"id\":355,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":22.472,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.666,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram.jpeg\",\"id\":357,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":29.999,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.943,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Benne\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br \\/><strong>Eco-friendly materials:<\\/strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.<\\/p><p><strong> Empowering artisans:<\\/strong> We\\u2019re more than just a luxury brand; we\\u2019re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(35, 17, '_elementor_edit_mode', 'builder'),
(36, 17, '_elementor_template_type', 'wp-page'),
(37, 17, '_elementor_version', '3.16.4'),
(38, 17, '_wp_page_template', 'default'),
(39, 17, '_elementor_data', '[{\"id\":\"4da2a3e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"d7fcd1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"gradient\",\"background_color\":\"#E62F2F\"},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(42, 19, '_elementor_edit_mode', 'builder'),
(43, 19, '_elementor_template_type', 'kit'),
(45, 6, '_wp_page_template', 'default'),
(46, 6, '_elementor_page_settings', 'a:14:{s:9:\"site_name\";s:12:\"Beyond Color\";s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:13:\"custom_colors\";a:0:{}s:36:\"typography_enable_styleguide_preview\";s:3:\"yes\";s:17:\"system_typography\";a:4:{i:0;a:6:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_logo\";a:5:{s:3:\"url\";s:83:\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png\";s:2:\"id\";i:69;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:12:\"site_favicon\";a:5:{s:3:\"url\";s:72:\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/favicon.png\";s:2:\"id\";i:75;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:12:\"Beyond Color\";s:6:\"source\";s:7:\"library\";}s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:18:\"active_breakpoints\";a:4:{i:0;s:15:\"viewport_mobile\";i:1;s:15:\"viewport_tablet\";i:2;s:15:\"viewport_laptop\";i:3;s:19:\"viewport_widescreen\";}}'),
(50, 21, '_elementor_edit_mode', 'builder'),
(51, 21, '_elementor_template_type', 'wp-page'),
(52, 21, '_elementor_version', '3.16.4'),
(53, 21, '_wp_page_template', 'elementor_header_footer'),
(54, 21, '_elementor_data', '[{\"id\":\"4da2a3e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"d7fcd1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"gradient\",\"background_color\":\"#E62F2F\"},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(57, 22, '_elementor_edit_mode', 'builder'),
(58, 22, '_elementor_template_type', 'wp-page'),
(59, 22, '_elementor_version', '3.16.4'),
(60, 22, '_wp_page_template', 'elementor_header_footer'),
(61, 22, '_elementor_data', '[{\"id\":\"4da2a3e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"d7fcd1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"gradient\",\"background_color\":\"#E62F2F\"},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(64, 23, '_elementor_edit_mode', 'builder'),
(65, 23, '_elementor_template_type', 'wp-page'),
(66, 23, '_elementor_version', '3.16.4'),
(67, 23, '_wp_page_template', 'elementor_header_footer'),
(68, 23, '_elementor_data', '[{\"id\":\"4da2a3e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"d7fcd1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"gradient\",\"background_color\":\"#E62F2F\"},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(72, 24, '_menu_item_type', 'post_type'),
(73, 24, '_menu_item_menu_item_parent', '0'),
(74, 24, '_menu_item_object_id', '13'),
(75, 24, '_menu_item_object', 'page'),
(76, 24, '_menu_item_target', ''),
(77, 24, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(78, 24, '_menu_item_xfn', ''),
(79, 24, '_menu_item_url', ''),
(81, 24, '_menu_item_template', ''),
(82, 24, '_menu_item_mega_template', '0'),
(83, 24, '_menu_item_nolink', ''),
(84, 24, '_menu_item_category_post', ''),
(85, 24, '_menu_item_megamenu', ''),
(86, 24, '_menu_item_megamenu_auto_width', ''),
(87, 24, '_menu_item_megamenu_col', ''),
(88, 24, '_menu_item_megamenu_heading', ''),
(89, 24, '_menu_item_megamenu_widgetarea', '0'),
(90, 24, '_menu_item_icon', ''),
(91, 25, '_elementor_edit_mode', 'builder'),
(92, 25, '_elementor_template_type', 'section'),
(93, 25, '_elementor_version', '3.16.4'),
(94, 25, '_edit_lock', '1696423788:1'),
(95, 26, '_elementor_edit_mode', 'builder'),
(96, 26, '_elementor_template_type', 'section'),
(97, 26, '_elementor_version', '3.16.4'),
(98, 25, '_wp_page_template', 'default'),
(99, 25, '_elementor_data', '[{\"id\":\"ada03dd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4000382\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\"},\"elements\":[{\"id\":\"f97e67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/beyond-color-black.png\",\"id\":69,\"size\":\"\",\"alt\":\"Beyond Color\",\"source\":\"library\"},\"link_to\":\"custom\",\"link\":{\"url\":\"\\/beyondc\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":19.959},\"_flex_align_self\":\"center\",\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"11551c5\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"300\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#000000\",\"color_menu_item_hover\":\"#000000\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":true}],\"isInner\":false}]'),
(100, 27, '_elementor_edit_mode', 'builder'),
(101, 27, '_elementor_template_type', 'section'),
(102, 27, '_elementor_version', '3.16.4'),
(103, 27, '_wp_page_template', 'default'),
(104, 27, '_elementor_data', '[{\"id\":\"ada03dd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"5bc4c90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(109, 6, '_edit_lock', '1696576273:1'),
(110, 29, '_elementor_edit_mode', 'builder'),
(111, 29, '_elementor_template_type', 'wp-page'),
(112, 29, '_elementor_version', '3.16.4'),
(113, 29, '_wp_page_template', 'elementor_header_footer'),
(114, 29, '_elementor_data', '[{\"id\":\"4da2a3e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"d7fcd1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"gradient\",\"background_color\":\"#E62F2F\"},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(117, 30, '_elementor_edit_mode', 'builder'),
(118, 30, '_elementor_template_type', 'wp-page'),
(119, 30, '_elementor_version', '3.16.4'),
(120, 30, '_wp_page_template', 'elementor_header_footer'),
(121, 30, '_elementor_data', '[{\"id\":\"4da2a3e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"d7fcd1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"gradient\",\"background_color\":\"#E62F2F\"},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(124, 31, '_elementor_edit_mode', 'builder'),
(125, 31, '_elementor_template_type', 'wp-page'),
(126, 31, '_elementor_version', '3.16.4'),
(127, 31, '_wp_page_template', 'elementor_header_footer'),
(128, 31, '_elementor_data', '[{\"id\":\"4da2a3e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d7fcd1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"gradient\",\"background_color\":\"#E62F2F\"},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(132, 32, '_wp_attached_file', '2023/09/Home-Banner.jpeg'),
(133, 32, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1440;s:6:\"height\";i:808;s:4:\"file\";s:24:\"2023/09/Home-Banner.jpeg\";s:8:\"filesize\";i:182218;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"Home-Banner-300x168.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9321;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"Home-Banner-1024x575.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82023;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"Home-Banner-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4693;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"Home-Banner-768x431.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:431;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47748;}s:13:\"ocean-thumb-m\";a:5:{s:4:\"file\";s:24:\"Home-Banner-600x600.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51396;}s:14:\"ocean-thumb-ml\";a:5:{s:4:\"file\";s:24:\"Home-Banner-800x450.jpeg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52142;}s:13:\"ocean-thumb-l\";a:5:{s:4:\"file\";s:25:\"Home-Banner-1200x700.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113593;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(134, 32, '_wp_attachment_image_alt', 'Beyond Color'),
(135, 33, '_elementor_edit_mode', 'builder'),
(136, 33, '_elementor_template_type', 'wp-page'),
(137, 33, '_elementor_version', '3.16.4'),
(138, 33, '_wp_page_template', 'elementor_header_footer'),
(139, 33, '_elementor_data', '[{\"id\":\"4da2a3e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d7fcd1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"gradient\",\"background_color\":\"#E62F2F\"},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(141, 34, '_elementor_edit_mode', 'builder'),
(142, 34, '_elementor_template_type', 'wp-page'),
(143, 34, '_elementor_version', '3.16.4'),
(144, 34, '_wp_page_template', 'elementor_header_footer'),
(145, 34, '_elementor_data', '[{\"id\":\"4da2a3e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d7fcd1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"gradient\",\"background_color\":\"#E62F2F\"},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(147, 35, '_elementor_edit_mode', 'builder'),
(148, 35, '_elementor_template_type', 'wp-page'),
(149, 35, '_elementor_version', '3.16.4'),
(150, 35, '_wp_page_template', 'elementor_header_footer'),
(151, 35, '_elementor_data', '[{\"id\":\"132ce17\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"html_tag\":\"section\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\",\"id\":32,\"size\":\"\",\"alt\":\"Beyond Color\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":false}]'),
(153, 36, '_elementor_edit_mode', 'builder'),
(154, 36, '_elementor_template_type', 'wp-page'),
(155, 36, '_elementor_version', '3.16.4'),
(156, 36, '_wp_page_template', 'elementor_header_footer'),
(157, 36, '_elementor_data', '[{\"id\":\"132ce17\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"html_tag\":\"section\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\",\"id\":32,\"size\":\"\",\"alt\":\"Beyond Color\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":false}]'),
(159, 37, '_elementor_edit_mode', 'builder'),
(160, 37, '_elementor_template_type', 'wp-page'),
(161, 37, '_elementor_version', '3.16.4'),
(162, 37, '_wp_page_template', 'elementor_header_footer'),
(163, 37, '_elementor_data', '[{\"id\":\"132ce17\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"html_tag\":\"section\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\",\"id\":32,\"size\":\"\",\"alt\":\"Beyond Color\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":false}]'),
(165, 38, '_elementor_edit_mode', 'builder'),
(166, 38, '_elementor_template_type', 'wp-page'),
(167, 38, '_elementor_version', '3.16.4'),
(168, 38, '_wp_page_template', 'elementor_header_footer'),
(169, 38, '_elementor_data', '[{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b3ab7e\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}]'),
(172, 39, '_elementor_edit_mode', 'builder'),
(173, 39, '_elementor_template_type', 'wp-page'),
(174, 39, '_elementor_version', '3.16.4'),
(175, 39, '_wp_page_template', 'elementor_header_footer'),
(176, 39, '_elementor_data', '[{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b3ab7e\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}]'),
(179, 40, '_elementor_edit_mode', 'builder'),
(180, 40, '_elementor_template_type', 'wp-page'),
(181, 40, '_elementor_version', '3.16.4'),
(182, 40, '_wp_page_template', 'elementor_header_footer'),
(183, 40, '_elementor_data', '[{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b3ab7e\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}]'),
(186, 41, '_elementor_edit_mode', 'builder'),
(187, 41, '_elementor_template_type', 'wp-page'),
(188, 41, '_elementor_version', '3.16.4'),
(189, 41, '_wp_page_template', 'elementor_header_footer'),
(190, 41, '_elementor_data', '[{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"bfe8e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"4eebd9f\",\"elType\":\"container\",\"settings\":[],\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(199, 43, '_wp_attached_file', '2023/09/material1.jpeg');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(200, 43, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:441;s:6:\"height\";i:441;s:4:\"file\";s:22:\"2023/09/material1.jpeg\";s:8:\"filesize\";i:256384;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"material1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22966;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"material1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6902;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(205, 45, '_elementor_edit_mode', 'builder'),
(206, 45, '_elementor_template_type', 'wp-page'),
(207, 45, '_elementor_version', '3.16.4'),
(208, 45, '_wp_page_template', 'elementor_header_footer'),
(209, 45, '_elementor_data', '[{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"bfe8e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"4eebd9f\",\"elType\":\"container\",\"settings\":[],\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(212, 46, '_elementor_edit_mode', 'builder'),
(213, 46, '_elementor_template_type', 'wp-page'),
(214, 46, '_elementor_version', '3.16.4'),
(215, 46, '_wp_page_template', 'elementor_header_footer'),
(216, 46, '_elementor_data', '[{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"bfe8e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"4eebd9f\",\"elType\":\"container\",\"settings\":[],\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(219, 47, '_elementor_edit_mode', 'builder'),
(220, 47, '_elementor_template_type', 'wp-page'),
(221, 47, '_elementor_version', '3.16.4'),
(222, 47, '_wp_page_template', 'elementor_header_footer'),
(223, 47, '_elementor_data', '[{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\"},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c9ef033\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\"},\"elements\":[{\"id\":\"641f615\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"57c3b3f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":17.353,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":53.235,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"eccd709\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\"},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(226, 13, '_elementor_pro_version', '3.16.2'),
(244, 50, '_edit_lock', '1696591246:1'),
(245, 50, '_wp_page_template', 'elementor_header_footer'),
(247, 52, '_edit_lock', '1696595654:1'),
(248, 52, '_wp_page_template', 'elementor_header_footer'),
(249, 54, '_edit_lock', '1696596484:1'),
(250, 54, '_wp_page_template', 'elementor_header_footer'),
(251, 56, '_edit_lock', '1696596487:1'),
(252, 56, '_wp_page_template', 'elementor_header_footer'),
(253, 58, '_menu_item_type', 'post_type'),
(254, 58, '_menu_item_menu_item_parent', '0'),
(255, 58, '_menu_item_object_id', '56'),
(256, 58, '_menu_item_object', 'page'),
(257, 58, '_menu_item_target', ''),
(258, 58, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(259, 58, '_menu_item_xfn', ''),
(260, 58, '_menu_item_url', ''),
(262, 58, '_menu_item_template', ''),
(263, 58, '_menu_item_mega_template', '0'),
(264, 58, '_menu_item_nolink', ''),
(265, 58, '_menu_item_category_post', ''),
(266, 58, '_menu_item_megamenu', ''),
(267, 58, '_menu_item_megamenu_auto_width', ''),
(268, 58, '_menu_item_megamenu_col', ''),
(269, 58, '_menu_item_megamenu_heading', ''),
(270, 58, '_menu_item_megamenu_widgetarea', '0'),
(271, 58, '_menu_item_icon', ''),
(272, 59, '_menu_item_type', 'post_type'),
(273, 59, '_menu_item_menu_item_parent', '0'),
(274, 59, '_menu_item_object_id', '54'),
(275, 59, '_menu_item_object', 'page'),
(276, 59, '_menu_item_target', ''),
(277, 59, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(278, 59, '_menu_item_xfn', ''),
(279, 59, '_menu_item_url', ''),
(281, 59, '_menu_item_template', ''),
(282, 59, '_menu_item_mega_template', '0'),
(283, 59, '_menu_item_nolink', ''),
(284, 59, '_menu_item_category_post', ''),
(285, 59, '_menu_item_megamenu', ''),
(286, 59, '_menu_item_megamenu_auto_width', ''),
(287, 59, '_menu_item_megamenu_col', ''),
(288, 59, '_menu_item_megamenu_heading', ''),
(289, 59, '_menu_item_megamenu_widgetarea', '0'),
(290, 59, '_menu_item_icon', ''),
(291, 60, '_menu_item_type', 'post_type'),
(292, 60, '_menu_item_menu_item_parent', '0'),
(293, 60, '_menu_item_object_id', '52'),
(294, 60, '_menu_item_object', 'page'),
(295, 60, '_menu_item_target', ''),
(296, 60, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(297, 60, '_menu_item_xfn', ''),
(298, 60, '_menu_item_url', ''),
(300, 60, '_menu_item_template', ''),
(301, 60, '_menu_item_mega_template', '0'),
(302, 60, '_menu_item_nolink', ''),
(303, 60, '_menu_item_category_post', ''),
(304, 60, '_menu_item_megamenu', ''),
(305, 60, '_menu_item_megamenu_auto_width', ''),
(306, 60, '_menu_item_megamenu_col', ''),
(307, 60, '_menu_item_megamenu_heading', ''),
(308, 60, '_menu_item_megamenu_widgetarea', '0'),
(309, 60, '_menu_item_icon', ''),
(310, 61, '_menu_item_type', 'post_type'),
(311, 61, '_menu_item_menu_item_parent', '0'),
(312, 61, '_menu_item_object_id', '50'),
(313, 61, '_menu_item_object', 'page'),
(314, 61, '_menu_item_target', ''),
(315, 61, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(316, 61, '_menu_item_xfn', ''),
(317, 61, '_menu_item_url', ''),
(319, 61, '_menu_item_template', ''),
(320, 61, '_menu_item_mega_template', '0'),
(321, 61, '_menu_item_nolink', ''),
(322, 61, '_menu_item_category_post', ''),
(323, 61, '_menu_item_megamenu', ''),
(324, 61, '_menu_item_megamenu_auto_width', ''),
(325, 61, '_menu_item_megamenu_col', ''),
(326, 61, '_menu_item_megamenu_heading', ''),
(327, 61, '_menu_item_megamenu_widgetarea', '0'),
(328, 61, '_menu_item_icon', ''),
(329, 24, '_wp_old_date', '2023-09-25'),
(330, 62, '_wp_attached_file', '2023/09/Beyond-Color-Logo.png'),
(331, 62, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:604;s:6:\"height\";i:51;s:4:\"file\";s:29:\"2023/09/Beyond-Color-Logo.png\";s:8:\"filesize\";i:7936;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"Beyond-Color-Logo-300x25.png\";s:5:\"width\";i:300;s:6:\"height\";i:25;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6833;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Beyond-Color-Logo-150x51.png\";s:5:\"width\";i:150;s:6:\"height\";i:51;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2589;}s:13:\"ocean-thumb-m\";a:5:{s:4:\"file\";s:28:\"Beyond-Color-Logo-600x51.png\";s:5:\"width\";i:600;s:6:\"height\";i:51;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10417;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(332, 63, '_elementor_edit_mode', 'builder'),
(333, 63, '_elementor_template_type', 'section'),
(334, 63, '_elementor_version', '3.16.4'),
(335, 63, '_wp_page_template', 'default'),
(336, 63, '_elementor_data', '[{\"id\":\"ada03dd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"4000382\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\"},\"elements\":[{\"id\":\"f97e67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":19.959},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"11551c5\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"500\",\"menu_typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":true}],\"isInner\":false}]'),
(338, 25, '_elementor_pro_version', '3.16.2'),
(341, 64, '_elementor_edit_mode', 'builder'),
(342, 64, '_elementor_template_type', 'section'),
(343, 64, '_elementor_version', '3.16.4'),
(344, 64, '_wp_page_template', 'default'),
(345, 64, '_elementor_data', '[{\"id\":\"ada03dd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"4000382\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\"},\"elements\":[{\"id\":\"f97e67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":19.959},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"11551c5\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"500\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_active\":\"#000000\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":true}],\"isInner\":false}]'),
(347, 64, '_elementor_pro_version', '3.16.2'),
(350, 65, '_elementor_edit_mode', 'builder'),
(351, 65, '_elementor_template_type', 'wp-page'),
(352, 65, '_elementor_version', '3.16.4'),
(353, 65, '_wp_page_template', 'elementor_header_footer'),
(354, 65, '_elementor_data', '[{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\"},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c9ef033\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\"},\"elements\":[{\"id\":\"641f615\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"57c3b3f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":17.353,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":53.235,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"eccd709\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\"},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(356, 65, '_elementor_pro_version', '3.16.2'),
(357, 66, '_elementor_edit_mode', 'builder'),
(358, 66, '_elementor_template_type', 'wp-page'),
(359, 66, '_elementor_version', '3.16.4'),
(360, 66, '_wp_page_template', 'elementor_header_footer'),
(361, 66, '_elementor_data', '[{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\"},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c9ef033\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\"},\"elements\":[{\"id\":\"641f615\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"57c3b3f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":17.353,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":53.235,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"eccd709\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\"},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(363, 66, '_elementor_pro_version', '3.16.2'),
(364, 67, '_elementor_edit_mode', 'builder'),
(365, 67, '_elementor_template_type', 'wp-page'),
(366, 67, '_elementor_version', '3.16.4'),
(367, 67, '_wp_page_template', 'elementor_header_footer'),
(368, 67, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2},\"elements\":[{\"id\":\"d4628e0\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\"},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c9ef033\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\"},\"elements\":[{\"id\":\"641f615\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"57c3b3f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":17.353,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":53.235,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"eccd709\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\"},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(370, 67, '_elementor_pro_version', '3.16.2'),
(373, 68, '_elementor_edit_mode', 'builder'),
(374, 68, '_elementor_template_type', 'section'),
(375, 68, '_elementor_version', '3.16.4'),
(376, 68, '_wp_page_template', 'default'),
(377, 68, '_elementor_data', '[{\"id\":\"ada03dd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"4000382\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\"},\"elements\":[{\"id\":\"f97e67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":19.959},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"11551c5\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"500\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#000000\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#000000\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":true}],\"isInner\":false}]'),
(379, 68, '_elementor_pro_version', '3.16.2'),
(384, 69, '_wp_attached_file', '2023/09/beyond-color-black.png'),
(385, 69, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:604;s:6:\"height\";i:51;s:4:\"file\";s:30:\"2023/09/beyond-color-black.png\";s:8:\"filesize\";i:8260;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"beyond-color-black-300x25.png\";s:5:\"width\";i:300;s:6:\"height\";i:25;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5221;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"beyond-color-black-150x51.png\";s:5:\"width\";i:150;s:6:\"height\";i:51;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1783;}s:13:\"ocean-thumb-m\";a:5:{s:4:\"file\";s:29:\"beyond-color-black-600x51.png\";s:5:\"width\";i:600;s:6:\"height\";i:51;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7333;}s:20:\"elementor_custom_40x\";a:4:{s:4:\"file\";s:82:\"elementor/thumbs/beyond-color-black-qd95i4f0fyoq0bx7zx0k4z4cj5jbum6rd3z5dgchzy.png\";s:5:\"width\";i:40;s:6:\"height\";i:0;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"elementor_custom_200x\";a:4:{s:4:\"file\";s:82:\"elementor/thumbs/beyond-color-black-qd95i4f2e4q3ul8c4gihvbxpkqr7o060meivyyo3oq.png\";s:5:\"width\";i:200;s:6:\"height\";i:0;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:{}}}'),
(386, 69, '_wp_attachment_image_alt', ''),
(387, 70, '_elementor_edit_mode', 'builder'),
(388, 70, '_elementor_template_type', 'section'),
(389, 70, '_elementor_version', '3.16.4'),
(390, 70, '_wp_page_template', 'default'),
(391, 70, '_elementor_data', '[{\"id\":\"ada03dd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4000382\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\"},\"elements\":[{\"id\":\"f97e67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/beyond-color-black.png\",\"id\":69,\"size\":\"\",\"alt\":\"Beyond Color\",\"source\":\"library\"},\"link_to\":\"custom\",\"link\":{\"url\":\"\\/Home\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":19.959},\"_flex_align_self\":\"center\",\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"11551c5\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"500\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#000000\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":true}],\"isInner\":false}]'),
(393, 70, '_elementor_pro_version', '3.16.2'),
(405, 72, '_elementor_edit_mode', 'builder'),
(406, 72, '_elementor_template_type', 'kit'),
(408, 72, '_wp_page_template', 'default'),
(409, 72, '_elementor_page_settings', 'a:2:{s:9:\"site_name\";s:12:\"Beyond Color\";s:16:\"site_description\";s:0:\"\";}'),
(410, 6, '_elementor_data', '[]'),
(411, 73, '_elementor_edit_mode', 'builder'),
(412, 73, '_elementor_template_type', 'kit'),
(414, 73, '_wp_page_template', 'default'),
(415, 73, '_elementor_page_settings', 'a:11:{s:9:\"site_name\";s:12:\"Beyond Color\";s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:13:\"custom_colors\";a:0:{}s:36:\"typography_enable_styleguide_preview\";s:3:\"yes\";s:17:\"system_typography\";a:4:{i:0;a:6:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;}'),
(416, 73, '_elementor_data', '[]'),
(418, 6, '_elementor_version', '3.16.4'),
(419, 6, '_elementor_pro_version', '3.16.2'),
(428, 75, '_wp_attached_file', '2023/09/favicon.png'),
(429, 75, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:62;s:6:\"height\";i:51;s:4:\"file\";s:19:\"2023/09/favicon.png\";s:8:\"filesize\";i:1408;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:{}}}'),
(430, 75, '_wp_attachment_image_alt', ''),
(431, 76, '_elementor_edit_mode', 'builder'),
(432, 76, '_elementor_template_type', 'wp-page'),
(433, 76, '_elementor_version', '3.16.4'),
(434, 76, '_wp_page_template', 'elementor_header_footer'),
(435, 76, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2},\"elements\":[{\"id\":\"d4628e0\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\"},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c9ef033\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\"},\"elements\":[{\"id\":\"641f615\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"57c3b3f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":17.353,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":53.235,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"eccd709\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\"},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(437, 76, '_elementor_pro_version', '3.16.2'),
(438, 77, '_elementor_edit_mode', 'builder'),
(439, 77, '_elementor_template_type', 'wp-page'),
(440, 77, '_elementor_version', '3.16.4'),
(441, 77, '_wp_page_template', 'elementor_header_footer'),
(442, 77, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2},\"elements\":[{\"id\":\"d4628e0\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\"},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c9ef033\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\"},\"elements\":[{\"id\":\"641f615\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"57c3b3f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":17.353,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":53.235,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"eccd709\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\"},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(444, 77, '_elementor_pro_version', '3.16.2'),
(445, 78, '_elementor_edit_mode', 'builder'),
(446, 78, '_elementor_template_type', 'wp-page'),
(447, 78, '_elementor_version', '3.16.4'),
(448, 78, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(449, 78, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\"},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c9ef033\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\"},\"elements\":[{\"id\":\"641f615\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"57c3b3f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":17.353,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":53.235,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"eccd709\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\"},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(451, 78, '_elementor_pro_version', '3.16.2'),
(453, 79, '_elementor_edit_mode', 'builder'),
(454, 79, '_elementor_template_type', 'wp-page'),
(455, 79, '_elementor_version', '3.16.4'),
(456, 79, '_wp_page_template', 'elementor_header_footer'),
(457, 79, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\"},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c9ef033\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\"},\"elements\":[{\"id\":\"641f615\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"57c3b3f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":17.353,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":53.235,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"eccd709\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\"},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(459, 79, '_elementor_pro_version', '3.16.2'),
(460, 80, '_elementor_edit_mode', 'builder'),
(461, 80, '_elementor_template_type', 'wp-page'),
(462, 80, '_elementor_version', '3.16.4'),
(463, 80, '_wp_page_template', 'elementor_header_footer'),
(464, 80, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\"},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c9ef033\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\"},\"elements\":[{\"id\":\"641f615\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"57c3b3f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":17.353,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":53.235,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"eccd709\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\"},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(466, 80, '_elementor_pro_version', '3.16.2'),
(467, 81, '_elementor_edit_mode', 'builder'),
(468, 81, '_elementor_template_type', 'wp-page'),
(469, 81, '_elementor_version', '3.16.4'),
(470, 81, '_wp_page_template', 'elementor_header_footer'),
(471, 81, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\"},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31.319,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf26850\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a1f083e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(473, 81, '_elementor_pro_version', '3.16.2'),
(475, 82, '_elementor_edit_mode', 'builder'),
(476, 82, '_elementor_template_type', 'kit'),
(477, 82, '_wp_page_template', 'default'),
(478, 82, '_elementor_page_settings', 'a:13:{s:9:\"site_name\";s:12:\"Beyond Color\";s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:13:\"custom_colors\";a:0:{}s:36:\"typography_enable_styleguide_preview\";s:3:\"yes\";s:17:\"system_typography\";a:4:{i:0;a:6:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_logo\";a:5:{s:3:\"url\";s:83:\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png\";s:2:\"id\";i:69;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:12:\"site_favicon\";a:5:{s:3:\"url\";s:72:\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/favicon.png\";s:2:\"id\";i:75;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:12:\"Beyond Color\";s:6:\"source\";s:7:\"library\";}s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;}'),
(479, 82, '_elementor_data', '[]'),
(481, 82, '_elementor_version', '3.16.4'),
(482, 82, '_elementor_pro_version', '3.16.2'),
(497, 86, '_elementor_edit_mode', 'builder'),
(498, 86, '_elementor_template_type', 'wp-page'),
(499, 86, '_elementor_version', '3.16.4'),
(500, 86, '_wp_page_template', 'elementor_header_footer'),
(501, 86, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\"},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31.319,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf26850\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a1f083e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(503, 86, '_elementor_pro_version', '3.16.2'),
(504, 87, '_elementor_edit_mode', 'builder'),
(505, 87, '_elementor_template_type', 'wp-page'),
(506, 87, '_elementor_version', '3.16.4'),
(507, 87, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(508, 87, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\"},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31.319,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf26850\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a1f083e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(510, 87, '_elementor_pro_version', '3.16.2'),
(511, 88, '_elementor_edit_mode', 'builder'),
(512, 88, '_elementor_template_type', 'wp-page'),
(513, 88, '_elementor_version', '3.16.4'),
(514, 88, '_wp_page_template', 'elementor_header_footer'),
(515, 88, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\"},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf26850\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a1f083e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(517, 88, '_elementor_pro_version', '3.16.2'),
(530, 91, '_elementor_edit_mode', 'builder'),
(531, 91, '_elementor_template_type', 'wp-page'),
(532, 91, '_elementor_version', '3.16.4'),
(533, 91, '_wp_page_template', 'elementor_header_footer'),
(534, 91, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\"},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf26850\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a1f083e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(536, 91, '_elementor_pro_version', '3.16.2'),
(537, 92, '_elementor_edit_mode', 'builder'),
(538, 92, '_elementor_template_type', 'wp-page'),
(539, 92, '_elementor_version', '3.16.4'),
(540, 92, '_wp_page_template', 'elementor_header_footer'),
(541, 92, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\"},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf26850\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a1f083e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(543, 92, '_elementor_pro_version', '3.16.2'),
(544, 93, '_elementor_edit_mode', 'builder'),
(545, 93, '_elementor_template_type', 'wp-page'),
(546, 93, '_elementor_version', '3.16.4'),
(547, 93, '_wp_page_template', 'elementor_header_footer'),
(548, 93, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Demo Spring\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\"},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf26850\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a1f083e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(550, 93, '_elementor_pro_version', '3.16.2'),
(561, 95, '_wp_attached_file', '2023/10/The-Seasons-Bold.ttf'),
(562, 95, '_wp_attachment_metadata', 'a:1:{s:8:\"filesize\";i:225704;}'),
(563, 96, '_wp_attached_file', '2023/10/The-Seasons-Bold-Italic.ttf'),
(564, 96, '_wp_attachment_metadata', 'a:1:{s:8:\"filesize\";i:275520;}'),
(565, 97, '_wp_attached_file', '2023/10/The-Seasons-Light.ttf'),
(566, 97, '_wp_attachment_metadata', 'a:1:{s:8:\"filesize\";i:235204;}'),
(567, 98, '_wp_attached_file', '2023/10/The-Seasons-Light-Italic.ttf'),
(568, 98, '_wp_attachment_metadata', 'a:1:{s:8:\"filesize\";i:284076;}'),
(569, 99, '_wp_attached_file', '2023/10/The-Seasons-Regular.ttf'),
(570, 99, '_wp_attachment_metadata', 'a:1:{s:8:\"filesize\";i:230704;}'),
(571, 100, '_wp_attached_file', '2023/10/The-Seasons-Italic.ttf'),
(572, 100, '_wp_attachment_metadata', 'a:1:{s:8:\"filesize\";i:274508;}'),
(573, 101, '_elementor_edit_mode', 'builder'),
(574, 101, '_elementor_template_type', 'wp-page'),
(575, 101, '_elementor_version', '3.16.4'),
(576, 101, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(577, 101, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Demo Spring\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\"},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf26850\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a1f083e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(579, 101, '_elementor_pro_version', '3.16.2'),
(581, 102, '_elementor_edit_mode', 'builder'),
(582, 102, '_elementor_template_type', 'wp-page'),
(583, 102, '_elementor_version', '3.16.4'),
(584, 102, '_wp_page_template', 'elementor_header_footer'),
(585, 102, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Demo Spring\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\"},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf26850\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a1f083e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(587, 102, '_elementor_pro_version', '3.16.2'),
(589, 103, '_elementor_edit_mode', 'builder'),
(590, 103, '_elementor_template_type', 'wp-page'),
(591, 103, '_elementor_version', '3.16.4'),
(592, 103, '_wp_page_template', 'elementor_header_footer'),
(593, 103, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Demo Spring\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\"},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Demo Spring\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf26850\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a1f083e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Demo Spring\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(595, 103, '_elementor_pro_version', '3.16.2'),
(599, 104, '_elementor_edit_mode', 'builder'),
(600, 104, '_elementor_template_type', 'wp-page'),
(601, 104, '_elementor_version', '3.16.4'),
(602, 104, '_wp_page_template', 'elementor_header_footer'),
(603, 104, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Demo Spring\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\"},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Demo Spring\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf26850\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a1f083e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Demo Spring\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(605, 104, '_elementor_pro_version', '3.16.2'),
(607, 105, '_elementor_edit_mode', 'builder'),
(608, 105, '_elementor_template_type', 'wp-page'),
(609, 105, '_elementor_version', '3.16.4'),
(610, 105, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(611, 105, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Demo Spring\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\"},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Demo Spring\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf26850\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a1f083e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Demo Spring\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(613, 105, '_elementor_pro_version', '3.16.2'),
(615, 106, '_elementor_edit_mode', 'builder'),
(616, 106, '_elementor_template_type', 'wp-page'),
(617, 106, '_elementor_version', '3.16.4'),
(618, 106, '_wp_page_template', 'elementor_header_footer'),
(619, 106, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seasons Font\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\"},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seasons Font\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf26850\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a1f083e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Demo Spring\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(621, 106, '_elementor_pro_version', '3.16.2'),
(633, 108, '_elementor_edit_mode', 'builder'),
(634, 108, '_elementor_template_type', 'wp-page'),
(635, 108, '_elementor_version', '3.16.4'),
(636, 108, '_wp_page_template', 'elementor_header_footer'),
(637, 108, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seasons Font\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\"},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seasons Font\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf26850\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a1f083e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Demo Spring\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(639, 108, '_elementor_pro_version', '3.16.2'),
(640, 109, '_elementor_edit_mode', 'builder'),
(641, 109, '_elementor_template_type', 'wp-page'),
(642, 109, '_elementor_version', '3.16.4'),
(643, 109, '_wp_page_template', 'elementor_header_footer'),
(644, 109, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seasons Font\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\"},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seasons Font\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf26850\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a1f083e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Demo Spring\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(646, 109, '_elementor_pro_version', '3.16.2'),
(647, 110, '_elementor_edit_mode', 'builder'),
(648, 110, '_elementor_template_type', 'wp-page'),
(649, 110, '_elementor_version', '3.16.4'),
(650, 110, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(651, 110, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\"},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seasons Font\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf26850\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a1f083e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Demo Spring\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(653, 110, '_elementor_pro_version', '3.16.2'),
(655, 111, '_elementor_edit_mode', 'builder'),
(656, 111, '_elementor_template_type', 'wp-page'),
(657, 111, '_elementor_version', '3.16.4'),
(658, 111, '_wp_page_template', 'elementor_header_footer'),
(659, 111, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\"},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seasons Font\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf26850\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a1f083e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Demo Spring\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(661, 111, '_elementor_pro_version', '3.16.2'),
(662, 112, '_elementor_edit_mode', 'builder'),
(663, 112, '_elementor_template_type', 'wp-page'),
(664, 112, '_elementor_version', '3.16.4'),
(665, 112, '_wp_page_template', 'elementor_header_footer'),
(666, 112, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\"},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seasons Font\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf26850\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a1f083e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Demo Spring\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(668, 112, '_elementor_pro_version', '3.16.2'),
(669, 113, '_elementor_edit_mode', 'builder'),
(670, 113, '_elementor_template_type', 'wp-page'),
(671, 113, '_elementor_version', '3.16.4'),
(672, 113, '_wp_page_template', 'elementor_header_footer'),
(673, 113, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seasons Font\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\"},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seasons Font\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf26850\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a1f083e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Demo Spring\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(675, 113, '_elementor_pro_version', '3.16.2'),
(678, 50, '_elementor_edit_mode', 'builder'),
(679, 50, '_elementor_template_type', 'wp-page'),
(680, 50, '_elementor_version', '3.16.4'),
(681, 50, '_elementor_pro_version', '3.16.2'),
(704, 117, '_elementor_edit_mode', 'builder'),
(705, 117, '_elementor_template_type', 'wp-page'),
(706, 117, '_elementor_version', '3.16.4'),
(707, 117, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(708, 117, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seasons Font\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\"},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seasons Font\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf26850\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a1f083e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Demo Spring\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(710, 117, '_elementor_pro_version', '3.16.2'),
(712, 118, '_elementor_edit_mode', 'builder'),
(713, 118, '_elementor_template_type', 'wp-page'),
(714, 118, '_elementor_version', '3.16.4'),
(715, 118, '_wp_page_template', 'elementor_header_footer'),
(716, 118, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seasons Font\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\"},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seasons Font\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf26850\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a1f083e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Demo Spring\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(718, 118, '_elementor_pro_version', '3.16.2'),
(720, 119, '_elementor_edit_mode', 'builder'),
(721, 119, '_elementor_template_type', 'wp-page'),
(722, 119, '_elementor_version', '3.16.4'),
(723, 119, '_wp_page_template', 'elementor_header_footer'),
(724, 119, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\"},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seasons Font\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf26850\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a1f083e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Demo Spring\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(726, 119, '_elementor_pro_version', '3.16.2'),
(732, 121, '_elementor_edit_mode', 'builder'),
(733, 121, '_elementor_template_type', 'wp-page'),
(734, 121, '_elementor_version', '3.16.4'),
(735, 121, '_wp_page_template', 'elementor_header_footer'),
(736, 121, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\"},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seasons Font\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf26850\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a1f083e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Demo Spring\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(738, 121, '_elementor_pro_version', '3.16.2'),
(739, 122, '_elementor_edit_mode', 'builder'),
(740, 122, '_elementor_template_type', 'wp-page'),
(741, 122, '_elementor_version', '3.16.4'),
(742, 122, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(743, 122, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\"},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seasons Font\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf26850\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a1f083e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Demo Spring\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(745, 122, '_elementor_pro_version', '3.16.2'),
(746, 123, '_elementor_edit_mode', 'builder'),
(747, 123, '_elementor_template_type', 'wp-page'),
(748, 123, '_elementor_version', '3.16.4'),
(749, 123, '_wp_page_template', 'elementor_header_footer'),
(750, 123, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"100\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\"},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seasons Font\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf26850\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a1f083e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Demo Spring\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(752, 123, '_elementor_pro_version', '3.16.2'),
(764, 125, '_wp_attached_file', '2023/10/gallery-material.jpeg'),
(765, 125, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:685;s:6:\"height\";i:679;s:4:\"file\";s:29:\"2023/10/gallery-material.jpeg\";s:8:\"filesize\";i:142266;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"gallery-material-300x297.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:297;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20374;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"gallery-material-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4472;}s:13:\"ocean-thumb-m\";a:5:{s:4:\"file\";s:29:\"gallery-material-600x600.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86923;}s:14:\"ocean-thumb-ml\";a:5:{s:4:\"file\";s:29:\"gallery-material-685x450.jpeg\";s:5:\"width\";i:685;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86764;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(766, 126, '_wp_attached_file', '2023/10/gallery2.jpeg'),
(767, 126, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:685;s:6:\"height\";i:679;s:4:\"file\";s:21:\"2023/10/gallery2.jpeg\";s:8:\"filesize\";i:40331;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"gallery2-300x297.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:297;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10080;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"gallery2-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3747;}s:13:\"ocean-thumb-m\";a:5:{s:4:\"file\";s:21:\"gallery2-600x600.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27554;}s:14:\"ocean-thumb-ml\";a:5:{s:4:\"file\";s:21:\"gallery2-685x450.jpeg\";s:5:\"width\";i:685;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27863;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(768, 127, '_elementor_edit_mode', 'builder'),
(769, 127, '_elementor_template_type', 'wp-page'),
(770, 127, '_elementor_version', '3.16.4'),
(771, 127, '_wp_page_template', 'elementor_header_footer'),
(772, 127, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"100\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\"},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seasons Font\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf26850\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a1f083e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Demo Spring\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(774, 127, '_elementor_pro_version', '3.16.2'),
(775, 128, '_elementor_edit_mode', 'builder'),
(776, 128, '_elementor_template_type', 'wp-page'),
(777, 128, '_elementor_version', '3.16.4'),
(778, 128, '_wp_page_template', 'elementor_header_footer'),
(779, 128, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"100\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\"},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seasons Font\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf26850\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a1f083e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Cotton InNeon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":45.882,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":48.529,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Demo Spring\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(781, 128, '_elementor_pro_version', '3.16.2'),
(782, 129, '_elementor_edit_mode', 'builder'),
(783, 129, '_elementor_template_type', 'wp-page'),
(784, 129, '_elementor_version', '3.16.4'),
(785, 129, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(786, 129, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"100\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\"},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(788, 129, '_elementor_pro_version', '3.16.2'),
(790, 130, '_elementor_edit_mode', 'builder'),
(791, 130, '_elementor_template_type', 'wp-page'),
(792, 130, '_elementor_version', '3.16.4'),
(793, 130, '_wp_page_template', 'elementor_header_footer'),
(794, 130, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"100\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\"},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(796, 130, '_elementor_pro_version', '3.16.2'),
(797, 131, '_elementor_edit_mode', 'builder'),
(798, 131, '_elementor_template_type', 'wp-page'),
(799, 131, '_elementor_version', '3.16.4'),
(800, 131, '_wp_page_template', 'elementor_header_footer'),
(801, 131, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"100\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\"},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(803, 131, '_elementor_pro_version', '3.16.2'),
(804, 132, '_elementor_edit_mode', 'builder'),
(805, 132, '_elementor_template_type', 'wp-page'),
(806, 132, '_elementor_version', '3.16.4'),
(807, 132, '_wp_page_template', 'elementor_header_footer'),
(808, 132, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"100\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\"},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(810, 132, '_elementor_pro_version', '3.16.2'),
(813, 133, '_elementor_edit_mode', 'builder'),
(814, 133, '_elementor_template_type', 'wp-page'),
(815, 133, '_elementor_version', '3.16.4'),
(816, 133, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(817, 133, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"100\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\"},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(819, 133, '_elementor_pro_version', '3.16.2'),
(821, 134, '_elementor_edit_mode', 'builder'),
(822, 134, '_elementor_template_type', 'wp-page'),
(823, 134, '_elementor_version', '3.16.4'),
(824, 134, '_wp_page_template', 'elementor_header_footer'),
(825, 134, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"100\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\"},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(827, 134, '_elementor_pro_version', '3.16.2'),
(829, 135, '_elementor_edit_mode', 'builder'),
(830, 135, '_elementor_template_type', 'wp-page'),
(831, 135, '_elementor_version', '3.16.4'),
(832, 135, '_wp_page_template', 'elementor_header_footer'),
(833, 135, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"100\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(835, 135, '_elementor_pro_version', '3.16.2'),
(839, 136, '_elementor_edit_mode', 'builder'),
(840, 136, '_elementor_template_type', 'wp-page'),
(841, 136, '_elementor_version', '3.16.4'),
(842, 136, '_wp_page_template', 'elementor_header_footer'),
(843, 136, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"100\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(845, 136, '_elementor_pro_version', '3.16.2'),
(847, 137, '_elementor_edit_mode', 'builder'),
(848, 137, '_elementor_template_type', 'wp-page'),
(849, 137, '_elementor_version', '3.16.4'),
(850, 137, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(851, 137, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"100\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(853, 137, '_elementor_pro_version', '3.16.2'),
(855, 138, '_elementor_edit_mode', 'builder'),
(856, 138, '_elementor_template_type', 'wp-page'),
(857, 138, '_elementor_version', '3.16.4'),
(858, 138, '_wp_page_template', 'elementor_header_footer'),
(859, 138, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(861, 138, '_elementor_pro_version', '3.16.2'),
(875, 140, '_elementor_edit_mode', 'builder'),
(876, 140, '_elementor_template_type', 'wp-page'),
(877, 140, '_elementor_version', '3.16.4'),
(878, 140, '_wp_page_template', 'elementor_header_footer'),
(879, 140, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(881, 140, '_elementor_pro_version', '3.16.2'),
(882, 141, '_elementor_edit_mode', 'builder'),
(883, 141, '_elementor_template_type', 'wp-page'),
(884, 141, '_elementor_version', '3.16.4'),
(885, 141, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(886, 141, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(888, 141, '_elementor_pro_version', '3.16.2'),
(889, 142, '_elementor_edit_mode', 'builder'),
(890, 142, '_elementor_template_type', 'wp-page'),
(891, 142, '_elementor_version', '3.16.4'),
(892, 142, '_wp_page_template', 'elementor_header_footer'),
(893, 142, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e906626\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchens\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF6B\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a90d8e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathrooms\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF6B\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"81307d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF6B\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b18fba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF6B\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(895, 142, '_elementor_pro_version', '3.16.2'),
(897, 143, '_elementor_edit_mode', 'builder'),
(898, 143, '_elementor_template_type', 'wp-page'),
(899, 143, '_elementor_version', '3.16.4'),
(900, 143, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(901, 143, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e906626\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchens\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF6B\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a90d8e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathrooms\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF6B\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"81307d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF6B\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b18fba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF6B\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(903, 143, '_elementor_pro_version', '3.16.2'),
(904, 144, '_elementor_edit_mode', 'builder'),
(905, 144, '_elementor_template_type', 'wp-page'),
(906, 144, '_elementor_version', '3.16.4'),
(907, 144, '_wp_page_template', 'elementor_header_footer'),
(908, 144, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e906626\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchens\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF6B\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a90d8e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathrooms\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF6B\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"81307d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF6B\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b18fba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF6B\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(910, 144, '_elementor_pro_version', '3.16.2'),
(911, 145, '_elementor_edit_mode', 'builder'),
(912, 145, '_elementor_template_type', 'wp-page'),
(913, 145, '_elementor_version', '3.16.4'),
(914, 145, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(915, 145, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e906626\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchens\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF6B\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a90d8e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathrooms\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF6B\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"81307d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF6B\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b18fba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF6B\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(917, 145, '_elementor_pro_version', '3.16.2'),
(919, 146, '_wp_attached_file', '2023/10/follow2.jpeg'),
(920, 146, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:451;s:6:\"height\";i:447;s:4:\"file\";s:20:\"2023/10/follow2.jpeg\";s:8:\"filesize\";i:208412;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"follow2-300x297.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:297;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18849;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"follow2-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6172;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(921, 147, '_wp_attached_file', '2023/10/follow1.jpeg'),
(922, 147, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:451;s:6:\"height\";i:447;s:4:\"file\";s:20:\"2023/10/follow1.jpeg\";s:8:\"filesize\";i:348934;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"follow1-300x297.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:297;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25236;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"follow1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4725;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(925, 149, '_wp_attached_file', '2023/10/social.jpeg'),
(926, 149, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1382;s:6:\"height\";i:446;s:4:\"file\";s:19:\"2023/10/social.jpeg\";s:8:\"filesize\";i:145990;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"social-300x97.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:97;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3547;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"social-1024x330.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:330;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65869;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"social-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3611;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"social-768x248.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:248;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33480;}s:13:\"ocean-thumb-m\";a:5:{s:4:\"file\";s:19:\"social-600x446.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:446;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59235;}s:14:\"ocean-thumb-ml\";a:5:{s:4:\"file\";s:19:\"social-800x446.jpeg\";s:5:\"width\";i:800;s:6:\"height\";i:446;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77707;}s:13:\"ocean-thumb-l\";a:5:{s:4:\"file\";s:20:\"social-1200x446.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:446;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113169;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(938, 152, '_wp_attached_file', '2023/10/facebook.svg'),
(939, 152, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:996;s:5:\"width\";i:34;s:6:\"height\";i:33;}'),
(947, 155, '_wp_attached_file', '2023/10/reddit.svg'),
(948, 155, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:2113;s:5:\"width\";i:33;s:6:\"height\";i:33;}'),
(950, 156, '_wp_attached_file', '2023/10/instagram-1.svg'),
(951, 156, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:3390;s:5:\"width\";i:34;s:6:\"height\";i:33;}'),
(956, 158, '_wp_attached_file', '2023/10/linkedin-1.svg'),
(957, 158, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:2237;s:5:\"width\";i:34;s:6:\"height\";i:33;}'),
(959, 159, '_wp_attached_file', '2023/10/pinterest-1.svg'),
(960, 159, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:1336;s:5:\"width\";i:33;s:6:\"height\";i:33;}'),
(962, 160, '_elementor_edit_mode', 'builder'),
(963, 160, '_elementor_template_type', 'wp-page'),
(964, 160, '_elementor_version', '3.16.4'),
(965, 160, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(966, 160, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e906626\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchens\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF6B\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a90d8e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathrooms\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF6B\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"81307d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF6B\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b18fba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF6B\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(968, 160, '_elementor_pro_version', '3.16.2'),
(969, 161, '_elementor_edit_mode', 'builder'),
(970, 161, '_elementor_template_type', 'wp-page'),
(971, 161, '_elementor_version', '3.16.4'),
(972, 161, '_wp_page_template', 'elementor_header_footer'),
(973, 161, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e906626\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchens\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF6B\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a90d8e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathrooms\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF6B\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"81307d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF6B\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b18fba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF6B\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(975, 161, '_elementor_pro_version', '3.16.2'),
(976, 162, '_elementor_edit_mode', 'builder'),
(977, 162, '_elementor_template_type', 'wp-page'),
(978, 162, '_elementor_version', '3.16.4'),
(979, 162, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(980, 162, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0155d89\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b021722\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/beyond-color-black.png\",\"id\":69,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"200\",\"height\":\"\"},\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5175d76\",\"elType\":\"widget\",\"settings\":{\"title\":\"it\\u2019s time we inspire those who inspired us\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b461823\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/reddit.svg\",\"id\":155},\"library\":\"svg\"},\"_id\":\"97955ae\",\"item_icon_color\":\"custom\"},{\"_id\":\"126d89e\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/pinterest-1.svg\",\"id\":159},\"library\":\"svg\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF\",\"icon_secondary_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}]'),
(982, 162, '_elementor_pro_version', '3.16.2'),
(985, 163, '_elementor_edit_mode', 'builder'),
(986, 163, '_elementor_template_type', 'wp-page'),
(987, 163, '_elementor_version', '3.16.4'),
(988, 163, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(989, 163, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0155d89\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b021722\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/beyond-color-black.png\",\"id\":69,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"200\",\"height\":\"\"},\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5175d76\",\"elType\":\"widget\",\"settings\":{\"title\":\"it\\u2019s time we inspire those who inspired us\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b461823\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/reddit.svg\",\"id\":155},\"library\":\"svg\"},\"_id\":\"97955ae\",\"item_icon_color\":\"custom\"},{\"_id\":\"126d89e\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/pinterest-1.svg\",\"id\":159},\"library\":\"svg\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF\",\"icon_secondary_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}]'),
(991, 163, '_elementor_pro_version', '3.16.2'),
(993, 164, '_elementor_edit_mode', 'builder'),
(994, 164, '_elementor_template_type', 'wp-page'),
(995, 164, '_elementor_version', '3.16.4'),
(996, 164, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(997, 164, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0155d89\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b021722\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/beyond-color-black.png\",\"id\":69,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"200\",\"height\":\"\"},\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5175d76\",\"elType\":\"widget\",\"settings\":{\"title\":\"it\\u2019s time we inspire those who inspired us\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b461823\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/reddit.svg\",\"id\":155},\"library\":\"svg\"},\"_id\":\"97955ae\",\"item_icon_color\":\"custom\"},{\"_id\":\"126d89e\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/pinterest-1.svg\",\"id\":159},\"library\":\"svg\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF\",\"icon_secondary_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}]'),
(999, 164, '_elementor_pro_version', '3.16.2'),
(1001, 165, '_elementor_edit_mode', 'builder'),
(1002, 165, '_elementor_template_type', 'wp-page'),
(1003, 165, '_elementor_version', '3.16.4'),
(1004, 165, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1005, 165, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0155d89\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b021722\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/beyond-color-black.png\",\"id\":69,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"200\",\"height\":\"\"},\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5175d76\",\"elType\":\"widget\",\"settings\":{\"title\":\"it\\u2019s time we inspire those who inspired us\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b461823\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/reddit.svg\",\"id\":155},\"library\":\"svg\"},\"_id\":\"97955ae\",\"item_icon_color\":\"custom\"},{\"_id\":\"126d89e\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/pinterest-1.svg\",\"id\":159},\"library\":\"svg\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF\",\"icon_secondary_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}]'),
(1007, 165, '_elementor_pro_version', '3.16.2'),
(1011, 166, '_elementor_edit_mode', 'builder'),
(1012, 166, '_elementor_template_type', 'wp-page'),
(1013, 166, '_elementor_version', '3.16.4'),
(1014, 166, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1015, 166, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0155d89\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b021722\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/beyond-color-black.png\",\"id\":69,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"200\",\"height\":\"\"},\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5175d76\",\"elType\":\"widget\",\"settings\":{\"title\":\"it\\u2019s time we inspire those who inspired us\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b461823\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/reddit.svg\",\"id\":155},\"library\":\"svg\"},\"_id\":\"97955ae\",\"item_icon_color\":\"custom\"},{\"_id\":\"126d89e\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/pinterest-1.svg\",\"id\":159},\"library\":\"svg\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF\",\"icon_secondary_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}]'),
(1017, 166, '_elementor_pro_version', '3.16.2'),
(1019, 167, '_elementor_edit_mode', 'builder'),
(1020, 167, '_elementor_template_type', 'wp-page'),
(1021, 167, '_elementor_version', '3.16.4'),
(1022, 167, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1023, 167, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0155d89\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b021722\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/beyond-color-black.png\",\"id\":69,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"200\",\"height\":\"\"},\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5175d76\",\"elType\":\"widget\",\"settings\":{\"title\":\"it\\u2019s time we inspire those who inspired us\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b461823\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/reddit.svg\",\"id\":155},\"library\":\"svg\"},\"_id\":\"97955ae\",\"item_icon_color\":\"custom\"},{\"_id\":\"126d89e\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/pinterest-1.svg\",\"id\":159},\"library\":\"svg\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF\",\"icon_secondary_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}]'),
(1025, 167, '_elementor_pro_version', '3.16.2'),
(1027, 168, '_elementor_edit_mode', 'builder'),
(1028, 168, '_elementor_template_type', 'wp-page'),
(1029, 168, '_elementor_version', '3.16.4'),
(1030, 168, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1031, 168, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0155d89\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b021722\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/beyond-color-black.png\",\"id\":69,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"200\",\"height\":\"\"},\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5175d76\",\"elType\":\"widget\",\"settings\":{\"title\":\"it\\u2019s time we inspire those who inspired us\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b461823\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/reddit.svg\",\"id\":155},\"library\":\"svg\"},\"_id\":\"97955ae\",\"item_icon_color\":\"custom\"},{\"_id\":\"126d89e\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/pinterest-1.svg\",\"id\":159},\"library\":\"svg\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF\",\"icon_secondary_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}]'),
(1033, 168, '_elementor_pro_version', '3.16.2'),
(1037, 169, '_elementor_edit_mode', 'builder'),
(1038, 169, '_elementor_template_type', 'wp-page'),
(1039, 169, '_elementor_version', '3.16.4'),
(1040, 169, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1041, 169, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0155d89\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b021722\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/beyond-color-black.png\",\"id\":69,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"200\",\"height\":\"\"},\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5175d76\",\"elType\":\"widget\",\"settings\":{\"title\":\"it\\u2019s time we inspire those who inspired us\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b461823\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/reddit.svg\",\"id\":155},\"library\":\"svg\"},\"_id\":\"97955ae\",\"item_icon_color\":\"custom\"},{\"_id\":\"126d89e\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/pinterest-1.svg\",\"id\":159},\"library\":\"svg\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF\",\"icon_secondary_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}]'),
(1043, 169, '_elementor_pro_version', '3.16.2'),
(1045, 170, '_elementor_edit_mode', 'builder'),
(1046, 170, '_elementor_template_type', 'wp-page'),
(1047, 170, '_elementor_version', '3.16.4'),
(1048, 170, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1049, 170, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0155d89\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b021722\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/beyond-color-black.png\",\"id\":69,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"200\",\"height\":\"\"},\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5175d76\",\"elType\":\"widget\",\"settings\":{\"title\":\"it\\u2019s time we inspire those who inspired us\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b461823\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/reddit.svg\",\"id\":155},\"library\":\"svg\"},\"_id\":\"97955ae\",\"item_icon_color\":\"custom\"},{\"_id\":\"126d89e\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/pinterest-1.svg\",\"id\":159},\"library\":\"svg\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF\",\"icon_secondary_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}]'),
(1051, 170, '_elementor_pro_version', '3.16.2'),
(1053, 171, '_elementor_edit_mode', 'builder'),
(1054, 171, '_elementor_template_type', 'wp-page'),
(1055, 171, '_elementor_version', '3.16.4'),
(1056, 171, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1057, 171, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0155d89\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b021722\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/beyond-color-black.png\",\"id\":69,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"200\",\"height\":\"\"},\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5175d76\",\"elType\":\"widget\",\"settings\":{\"title\":\"it\\u2019s time we inspire those who inspired us\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b461823\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/reddit.svg\",\"id\":155},\"library\":\"svg\"},\"_id\":\"97955ae\",\"item_icon_color\":\"custom\"},{\"_id\":\"126d89e\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/pinterest-1.svg\",\"id\":159},\"library\":\"svg\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF\",\"icon_secondary_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}]'),
(1059, 171, '_elementor_pro_version', '3.16.2'),
(1063, 172, '_elementor_edit_mode', 'builder'),
(1064, 172, '_elementor_template_type', 'wp-page'),
(1065, 172, '_elementor_version', '3.16.4'),
(1066, 172, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1067, 172, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0155d89\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b021722\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/beyond-color-black.png\",\"id\":69,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"200\",\"height\":\"\"},\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5175d76\",\"elType\":\"widget\",\"settings\":{\"title\":\"it\\u2019s time we inspire those who inspired us\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b461823\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/reddit.svg\",\"id\":155},\"library\":\"svg\"},\"_id\":\"97955ae\",\"item_icon_color\":\"custom\"},{\"_id\":\"126d89e\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/pinterest-1.svg\",\"id\":159},\"library\":\"svg\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF\",\"icon_secondary_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}]'),
(1069, 172, '_elementor_pro_version', '3.16.2'),
(1071, 173, '_elementor_edit_mode', 'builder'),
(1072, 173, '_elementor_template_type', 'wp-page'),
(1073, 173, '_elementor_version', '3.16.4'),
(1074, 173, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1075, 173, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0155d89\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b021722\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/beyond-color-black.png\",\"id\":69,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"200\",\"height\":\"\"},\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5175d76\",\"elType\":\"widget\",\"settings\":{\"title\":\"it\\u2019s time we inspire those who inspired us\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b461823\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/reddit.svg\",\"id\":155},\"library\":\"svg\"},\"_id\":\"97955ae\",\"item_icon_color\":\"custom\"},{\"_id\":\"126d89e\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/pinterest-1.svg\",\"id\":159},\"library\":\"svg\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF\",\"icon_secondary_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}]'),
(1077, 173, '_elementor_pro_version', '3.16.2'),
(1079, 174, '_elementor_edit_mode', 'builder'),
(1080, 174, '_elementor_template_type', 'wp-page'),
(1081, 174, '_elementor_version', '3.16.4'),
(1082, 174, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1083, 174, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0155d89\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b021722\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/beyond-color-black.png\",\"id\":69,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"200\",\"height\":\"\"},\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5175d76\",\"elType\":\"widget\",\"settings\":{\"title\":\"it\\u2019s time we inspire those who inspired us\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b461823\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/reddit.svg\",\"id\":155},\"library\":\"svg\"},\"_id\":\"97955ae\",\"item_icon_color\":\"custom\"},{\"_id\":\"126d89e\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/pinterest-1.svg\",\"id\":159},\"library\":\"svg\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF\",\"icon_secondary_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}]'),
(1085, 174, '_elementor_pro_version', '3.16.2'),
(1089, 175, '_elementor_edit_mode', 'builder'),
(1090, 175, '_elementor_template_type', 'wp-page'),
(1091, 175, '_elementor_version', '3.16.4'),
(1092, 175, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1093, 175, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0155d89\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b021722\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/beyond-color-black.png\",\"id\":69,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"200\",\"height\":\"\"},\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5175d76\",\"elType\":\"widget\",\"settings\":{\"title\":\"it\\u2019s time we inspire those who inspired us\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b461823\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/reddit.svg\",\"id\":155},\"library\":\"svg\"},\"_id\":\"97955ae\",\"item_icon_color\":\"custom\"},{\"_id\":\"126d89e\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/pinterest-1.svg\",\"id\":159},\"library\":\"svg\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF\",\"icon_secondary_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}]'),
(1095, 175, '_elementor_pro_version', '3.16.2'),
(1097, 176, '_elementor_edit_mode', 'builder'),
(1098, 176, '_elementor_template_type', 'wp-page'),
(1099, 176, '_elementor_version', '3.16.4'),
(1100, 176, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1101, 176, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0155d89\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b021722\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/beyond-color-black.png\",\"id\":69,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"200\",\"height\":\"\"},\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5175d76\",\"elType\":\"widget\",\"settings\":{\"title\":\"it\\u2019s time we inspire those who inspired us\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b461823\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/reddit.svg\",\"id\":155},\"library\":\"svg\"},\"_id\":\"97955ae\",\"item_icon_color\":\"custom\"},{\"_id\":\"126d89e\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/pinterest-1.svg\",\"id\":159},\"library\":\"svg\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF\",\"icon_secondary_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}]'),
(1103, 176, '_elementor_pro_version', '3.16.2'),
(1105, 177, '_elementor_edit_mode', 'builder'),
(1106, 177, '_elementor_template_type', 'wp-page'),
(1107, 177, '_elementor_version', '3.16.4'),
(1108, 177, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1109, 177, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0155d89\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b021722\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/beyond-color-black.png\",\"id\":69,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"200\",\"height\":\"\"},\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5175d76\",\"elType\":\"widget\",\"settings\":{\"title\":\"it\\u2019s time we inspire those who inspired us\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b461823\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/reddit.svg\",\"id\":155},\"library\":\"svg\"},\"_id\":\"97955ae\",\"item_icon_color\":\"custom\"},{\"_id\":\"126d89e\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/pinterest-1.svg\",\"id\":159},\"library\":\"svg\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF\",\"icon_secondary_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}]'),
(1111, 177, '_elementor_pro_version', '3.16.2'),
(1115, 178, '_elementor_edit_mode', 'builder'),
(1116, 178, '_elementor_template_type', 'wp-page'),
(1117, 178, '_elementor_version', '3.16.4'),
(1118, 178, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1119, 178, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0155d89\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b021722\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/beyond-color-black.png\",\"id\":69,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"200\",\"height\":\"\"},\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5175d76\",\"elType\":\"widget\",\"settings\":{\"title\":\"it\\u2019s time we inspire those who inspired us\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b461823\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/reddit.svg\",\"id\":155},\"library\":\"svg\"},\"_id\":\"97955ae\",\"item_icon_color\":\"custom\"},{\"_id\":\"126d89e\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/pinterest-1.svg\",\"id\":159},\"library\":\"svg\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF\",\"icon_secondary_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}]'),
(1121, 178, '_elementor_pro_version', '3.16.2'),
(1123, 179, '_elementor_edit_mode', 'builder'),
(1124, 179, '_elementor_template_type', 'wp-page'),
(1125, 179, '_elementor_version', '3.16.4'),
(1126, 179, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1127, 179, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0155d89\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b021722\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/beyond-color-black.png\",\"id\":69,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"200\",\"height\":\"\"},\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5175d76\",\"elType\":\"widget\",\"settings\":{\"title\":\"it\\u2019s time we inspire those who inspired us\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b461823\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/reddit.svg\",\"id\":155},\"library\":\"svg\"},\"_id\":\"97955ae\",\"item_icon_color\":\"custom\"},{\"_id\":\"126d89e\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/pinterest-1.svg\",\"id\":159},\"library\":\"svg\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF\",\"icon_secondary_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}]'),
(1129, 179, '_elementor_pro_version', '3.16.2'),
(1131, 180, '_elementor_edit_mode', 'builder'),
(1132, 180, '_elementor_template_type', 'wp-page'),
(1133, 180, '_elementor_version', '3.16.4'),
(1134, 180, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1135, 180, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0155d89\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b021722\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/beyond-color-black.png\",\"id\":69,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"200\",\"height\":\"\"},\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5175d76\",\"elType\":\"widget\",\"settings\":{\"title\":\"it\\u2019s time we inspire those who inspired us\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b461823\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/reddit.svg\",\"id\":155},\"library\":\"svg\"},\"_id\":\"97955ae\",\"item_icon_color\":\"custom\"},{\"_id\":\"126d89e\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/pinterest-1.svg\",\"id\":159},\"library\":\"svg\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF\",\"icon_secondary_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}]'),
(1137, 180, '_elementor_pro_version', '3.16.2'),
(1140, 181, '_elementor_edit_mode', 'builder'),
(1141, 181, '_elementor_template_type', 'wp-page'),
(1142, 181, '_elementor_version', '3.16.4'),
(1143, 181, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1144, 181, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0155d89\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b021722\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/beyond-color-black.png\",\"id\":69,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"200\",\"height\":\"\"},\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5175d76\",\"elType\":\"widget\",\"settings\":{\"title\":\"it\\u2019s time we inspire those who inspired us\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b461823\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/reddit.svg\",\"id\":155},\"library\":\"svg\"},\"_id\":\"97955ae\",\"item_icon_color\":\"custom\"},{\"_id\":\"126d89e\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/pinterest-1.svg\",\"id\":159},\"library\":\"svg\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF\",\"icon_secondary_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}]'),
(1146, 181, '_elementor_pro_version', '3.16.2'),
(1147, 182, '_elementor_edit_mode', 'builder'),
(1148, 182, '_elementor_template_type', 'wp-page'),
(1149, 182, '_elementor_version', '3.16.4'),
(1150, 182, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1151, 182, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0155d89\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b021722\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/beyond-color-black.png\",\"id\":69,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"200\",\"height\":\"\"},\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5175d76\",\"elType\":\"widget\",\"settings\":{\"title\":\"it\\u2019s time we inspire those who inspired us\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b461823\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/reddit.svg\",\"id\":155},\"library\":\"svg\"},\"_id\":\"97955ae\",\"item_icon_color\":\"custom\"},{\"_id\":\"126d89e\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/pinterest-1.svg\",\"id\":159},\"library\":\"svg\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF\",\"icon_secondary_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}]'),
(1153, 182, '_elementor_pro_version', '3.16.2'),
(1154, 183, '_elementor_edit_mode', 'builder'),
(1155, 183, '_elementor_template_type', 'wp-page'),
(1156, 183, '_elementor_version', '3.16.4'),
(1157, 183, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1158, 183, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0155d89\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b021722\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/beyond-color-black.png\",\"id\":69,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"200\",\"height\":\"\"},\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5175d76\",\"elType\":\"widget\",\"settings\":{\"title\":\"it\\u2019s time we inspire those who inspired us\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b461823\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"_id\":\"126d89e\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/pinterest-1.svg\",\"id\":159},\"library\":\"svg\"}},{\"_id\":\"0c974d5\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/linkedin-1.svg\",\"id\":158},\"library\":\"svg\"}},{\"_id\":\"28ae8d1\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/facebook.svg\",\"id\":152},\"library\":\"svg\"}},{\"_id\":\"66a011d\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram-1.svg\",\"id\":156},\"library\":\"svg\"}},{\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/reddit.svg\",\"id\":155},\"library\":\"svg\"},\"_id\":\"97955ae\",\"item_icon_color\":\"custom\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF\",\"icon_secondary_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}]'),
(1160, 183, '_elementor_pro_version', '3.16.2'),
(1172, 185, '_elementor_edit_mode', 'builder'),
(1173, 185, '_elementor_template_type', 'wp-page'),
(1174, 185, '_elementor_version', '3.16.4'),
(1175, 185, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1176, 185, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0155d89\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b021722\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/beyond-color-black.png\",\"id\":69,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"200\",\"height\":\"\"},\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5175d76\",\"elType\":\"widget\",\"settings\":{\"title\":\"it\\u2019s time we inspire those who inspired us\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b461823\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"_id\":\"126d89e\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/pinterest-1.svg\",\"id\":159},\"library\":\"svg\"}},{\"_id\":\"0c974d5\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/linkedin-1.svg\",\"id\":158},\"library\":\"svg\"}},{\"_id\":\"28ae8d1\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/facebook.svg\",\"id\":152},\"library\":\"svg\"}},{\"_id\":\"66a011d\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram-1.svg\",\"id\":156},\"library\":\"svg\"}},{\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/reddit.svg\",\"id\":155},\"library\":\"svg\"},\"_id\":\"97955ae\",\"item_icon_color\":\"custom\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF\",\"icon_secondary_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}]'),
(1178, 185, '_elementor_pro_version', '3.16.2'),
(1179, 186, '_elementor_edit_mode', 'builder'),
(1180, 186, '_elementor_template_type', 'wp-page'),
(1181, 186, '_elementor_version', '3.16.4'),
(1182, 186, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1183, 186, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0155d89\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b021722\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/beyond-color-black.png\",\"id\":69,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"200\",\"height\":\"\"},\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5175d76\",\"elType\":\"widget\",\"settings\":{\"title\":\"it\\u2019s time we inspire those who inspired us\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b461823\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"_id\":\"126d89e\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/pinterest-1.svg\",\"id\":159},\"library\":\"svg\"}},{\"_id\":\"0c974d5\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/linkedin-1.svg\",\"id\":158},\"library\":\"svg\"}},{\"_id\":\"28ae8d1\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/facebook.svg\",\"id\":152},\"library\":\"svg\"}},{\"_id\":\"66a011d\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram-1.svg\",\"id\":156},\"library\":\"svg\"}},{\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/reddit.svg\",\"id\":155},\"library\":\"svg\"},\"_id\":\"97955ae\",\"item_icon_color\":\"custom\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF\",\"icon_secondary_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}]'),
(1185, 186, '_elementor_pro_version', '3.16.2'),
(1186, 187, '_elementor_edit_mode', 'builder'),
(1187, 187, '_elementor_template_type', 'wp-page'),
(1188, 187, '_elementor_version', '3.16.4'),
(1189, 187, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1190, 187, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0155d89\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6dcc41\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"b021722\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/beyond-color-black.png\",\"id\":69,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"200\",\"height\":\"\"},\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5175d76\",\"elType\":\"widget\",\"settings\":{\"title\":\"it\\u2019s time we inspire those who inspired us\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b461823\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"_id\":\"126d89e\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/pinterest-1.svg\",\"id\":159},\"library\":\"svg\"}},{\"_id\":\"0c974d5\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/linkedin-1.svg\",\"id\":158},\"library\":\"svg\"}},{\"_id\":\"28ae8d1\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/facebook.svg\",\"id\":152},\"library\":\"svg\"}},{\"_id\":\"66a011d\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram-1.svg\",\"id\":156},\"library\":\"svg\"}},{\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/reddit.svg\",\"id\":155},\"library\":\"svg\"},\"_id\":\"97955ae\",\"item_icon_color\":\"custom\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF\",\"icon_secondary_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d2af9e4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"20cc5ec\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"167877f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Address\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"148bd29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flat 601, C block, Siri Signature\\napts, Kakatiya Hills Hyderabad 500081\",\"header_size\":\"p\",\"title_color\":\"#828282\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"22450e6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"d059cee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Phone\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54b3974\",\"elType\":\"widget\",\"settings\":{\"title\":\"+91 9133323459<br>\\n+91 89778 12345 \\/ +91 9030707212\",\"header_size\":\"p\",\"title_color\":\"#828282\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d34beb0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"7ca0763\",\"elType\":\"widget\",\"settings\":{\"title\":\"Email\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9009ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"info@beyondcolor.com\",\"header_size\":\"p\",\"title_color\":\"#828282\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(1192, 187, '_elementor_pro_version', '3.16.2'),
(1194, 188, '_elementor_source', 'post'),
(1195, 188, '_elementor_edit_mode', 'builder'),
(1196, 188, '_elementor_template_type', 'container'),
(1197, 188, '_elementor_version', '3.16.4'),
(1198, 188, '_elementor_pro_version', '3.16.2'),
(1199, 188, '_edit_lock', '1696240419:1'),
(1200, 189, '_elementor_source', 'post'),
(1201, 189, '_elementor_edit_mode', 'builder'),
(1202, 189, '_elementor_template_type', 'container'),
(1203, 189, '_elementor_version', '3.16.4'),
(1204, 189, '_elementor_pro_version', '3.16.2'),
(1205, 188, '_wp_page_template', 'default'),
(1206, 188, '_elementor_data', '[{\"id\":\"d81e4b6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"4979588\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b21af0\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"1441ec8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/beyond-color-black.png\",\"id\":69,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"200\",\"height\":\"\"},\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8085db1\",\"elType\":\"widget\",\"settings\":{\"title\":\"it\\u2019s time we inspire those who inspired us\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71cadfc\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"_id\":\"126d89e\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/pinterest-1.svg\",\"id\":159},\"library\":\"svg\"}},{\"_id\":\"0c974d5\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/linkedin-1.svg\",\"id\":158},\"library\":\"svg\"}},{\"_id\":\"28ae8d1\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/facebook.svg\",\"id\":152},\"library\":\"svg\"}},{\"_id\":\"66a011d\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram-1.svg\",\"id\":156},\"library\":\"svg\"}},{\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/reddit.svg\",\"id\":155},\"library\":\"svg\"},\"_id\":\"97955ae\",\"item_icon_color\":\"custom\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF\",\"icon_secondary_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e418e1e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"e86dd6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40.33},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"683804c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Address\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"259d1b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flat 601, C block, Siri Signature\\napts, Kakatiya Hills Hyderabad 500081\",\"header_size\":\"p\",\"title_color\":\"#828282\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"07a3709\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":30.3},\"flex_direction\":\"column\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"35dde42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Phone\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a04045\",\"elType\":\"widget\",\"settings\":{\"title\":\"+91 9133323459<br>\\n+91 89778 12345 \\/ +91 9030707212\",\"header_size\":\"p\",\"title_color\":\"#828282\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"92ae457\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"9fe0602\",\"elType\":\"widget\",\"settings\":{\"title\":\"Email\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bae5cd6\",\"elType\":\"widget\",\"settings\":{\"title\":\"info@beyondcolor.com\",\"header_size\":\"p\",\"title_color\":\"#828282\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ecb08cc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"188d19d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2023 beyond Color. All rights reserved | Privacy Policy | Terms in use | Branding Website Design by theav<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_order\":\"start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}]'),
(1207, 190, '_elementor_source', 'post'),
(1208, 190, '_elementor_edit_mode', 'builder'),
(1209, 190, '_elementor_template_type', 'container'),
(1210, 190, '_elementor_version', '3.16.4'),
(1211, 190, '_elementor_pro_version', '3.16.2'),
(1212, 190, '_wp_page_template', 'default');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1213, 190, '_elementor_data', '[{\"id\":\"d81e4b6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"4979588\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b21af0\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"1441ec8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/beyond-color-black.png\",\"id\":69,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"200\",\"height\":\"\"},\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8085db1\",\"elType\":\"widget\",\"settings\":{\"title\":\"it\\u2019s time we inspire those who inspired us\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71cadfc\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"_id\":\"126d89e\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/pinterest-1.svg\",\"id\":159},\"library\":\"svg\"}},{\"_id\":\"0c974d5\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/linkedin-1.svg\",\"id\":158},\"library\":\"svg\"}},{\"_id\":\"28ae8d1\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/facebook.svg\",\"id\":152},\"library\":\"svg\"}},{\"_id\":\"66a011d\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram-1.svg\",\"id\":156},\"library\":\"svg\"}},{\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/reddit.svg\",\"id\":155},\"library\":\"svg\"},\"_id\":\"97955ae\",\"item_icon_color\":\"custom\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF\",\"icon_secondary_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e418e1e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"e86dd6d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"683804c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Address\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"259d1b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flat 601, C block, Siri Signature\\napts, Kakatiya Hills Hyderabad 500081\",\"header_size\":\"p\",\"title_color\":\"#828282\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"07a3709\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"35dde42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Phone\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a04045\",\"elType\":\"widget\",\"settings\":{\"title\":\"+91 9133323459<br>\\n+91 89778 12345 \\/ +91 9030707212\",\"header_size\":\"p\",\"title_color\":\"#828282\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"92ae457\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"9fe0602\",\"elType\":\"widget\",\"settings\":{\"title\":\"Email\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bae5cd6\",\"elType\":\"widget\",\"settings\":{\"title\":\"info@beyondcolor.com\",\"header_size\":\"p\",\"title_color\":\"#828282\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1217, 191, '_elementor_edit_mode', 'builder'),
(1218, 191, '_elementor_template_type', 'wp-page'),
(1219, 191, '_elementor_version', '3.16.4'),
(1220, 191, '_wp_page_template', 'elementor_header_footer'),
(1221, 191, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0155d89\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6dcc41\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"b021722\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/beyond-color-black.png\",\"id\":69,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"200\",\"height\":\"\"},\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5175d76\",\"elType\":\"widget\",\"settings\":{\"title\":\"it\\u2019s time we inspire those who inspired us\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b461823\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"_id\":\"126d89e\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/pinterest-1.svg\",\"id\":159},\"library\":\"svg\"}},{\"_id\":\"0c974d5\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/linkedin-1.svg\",\"id\":158},\"library\":\"svg\"}},{\"_id\":\"28ae8d1\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/facebook.svg\",\"id\":152},\"library\":\"svg\"}},{\"_id\":\"66a011d\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram-1.svg\",\"id\":156},\"library\":\"svg\"}},{\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/reddit.svg\",\"id\":155},\"library\":\"svg\"},\"_id\":\"97955ae\",\"item_icon_color\":\"custom\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF\",\"icon_secondary_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d2af9e4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"20cc5ec\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"167877f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Address\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"148bd29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flat 601, C block, Siri Signature\\napts, Kakatiya Hills Hyderabad 500081\",\"header_size\":\"p\",\"title_color\":\"#828282\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"22450e6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"d059cee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Phone\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54b3974\",\"elType\":\"widget\",\"settings\":{\"title\":\"+91 9133323459<br>\\n+91 89778 12345 \\/ +91 9030707212\",\"header_size\":\"p\",\"title_color\":\"#828282\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d34beb0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"7ca0763\",\"elType\":\"widget\",\"settings\":{\"title\":\"Email\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9009ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"info@beyondcolor.com\",\"header_size\":\"p\",\"title_color\":\"#828282\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(1223, 191, '_elementor_pro_version', '3.16.2'),
(1224, 192, '_elementor_edit_mode', 'builder'),
(1225, 192, '_elementor_template_type', 'wp-page'),
(1226, 192, '_elementor_version', '3.16.4'),
(1227, 192, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1228, 192, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0155d89\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6dcc41\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"b021722\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/beyond-color-black.png\",\"id\":69,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"200\",\"height\":\"\"},\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5175d76\",\"elType\":\"widget\",\"settings\":{\"title\":\"it\\u2019s time we inspire those who inspired us\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b461823\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"_id\":\"126d89e\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/pinterest-1.svg\",\"id\":159},\"library\":\"svg\"}},{\"_id\":\"0c974d5\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/linkedin-1.svg\",\"id\":158},\"library\":\"svg\"}},{\"_id\":\"28ae8d1\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/facebook.svg\",\"id\":152},\"library\":\"svg\"}},{\"_id\":\"66a011d\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram-1.svg\",\"id\":156},\"library\":\"svg\"}},{\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/reddit.svg\",\"id\":155},\"library\":\"svg\"},\"_id\":\"97955ae\",\"item_icon_color\":\"custom\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF\",\"icon_secondary_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d2af9e4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"20cc5ec\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"167877f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Address\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"148bd29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flat 601, C block, Siri Signature\\napts, Kakatiya Hills Hyderabad 500081\",\"header_size\":\"p\",\"title_color\":\"#828282\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"22450e6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"d059cee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Phone\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54b3974\",\"elType\":\"widget\",\"settings\":{\"title\":\"+91 9133323459<br>\\n+91 89778 12345 \\/ +91 9030707212\",\"header_size\":\"p\",\"title_color\":\"#828282\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d34beb0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"7ca0763\",\"elType\":\"widget\",\"settings\":{\"title\":\"Email\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9009ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"info@beyondcolor.com\",\"header_size\":\"p\",\"title_color\":\"#828282\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(1230, 192, '_elementor_pro_version', '3.16.2'),
(1231, 193, '_elementor_edit_mode', 'builder'),
(1232, 193, '_elementor_template_type', 'wp-page'),
(1233, 193, '_elementor_version', '3.16.4'),
(1234, 193, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1235, 193, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1237, 193, '_elementor_pro_version', '3.16.2'),
(1240, 194, '_elementor_source', 'post'),
(1241, 194, '_elementor_edit_mode', 'builder'),
(1242, 194, '_elementor_template_type', 'container'),
(1243, 194, '_elementor_version', '3.16.4'),
(1244, 194, '_elementor_pro_version', '3.16.2'),
(1245, 194, '_wp_page_template', 'default'),
(1246, 194, '_elementor_data', '[{\"id\":\"d81e4b6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"4979588\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b21af0\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"1441ec8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/beyond-color-black.png\",\"id\":69,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"200\",\"height\":\"\"},\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8085db1\",\"elType\":\"widget\",\"settings\":{\"title\":\"it\\u2019s time we inspire those who inspired us\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71cadfc\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"_id\":\"126d89e\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/pinterest-1.svg\",\"id\":159},\"library\":\"svg\"}},{\"_id\":\"0c974d5\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/linkedin-1.svg\",\"id\":158},\"library\":\"svg\"}},{\"_id\":\"28ae8d1\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/facebook.svg\",\"id\":152},\"library\":\"svg\"}},{\"_id\":\"66a011d\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram-1.svg\",\"id\":156},\"library\":\"svg\"}},{\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/reddit.svg\",\"id\":155},\"library\":\"svg\"},\"_id\":\"97955ae\",\"item_icon_color\":\"custom\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF\",\"icon_secondary_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e418e1e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"e86dd6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40.33},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"683804c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Address\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"259d1b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flat 601, C block, Siri Signature\\napts, Kakatiya Hills Hyderabad 500081\",\"header_size\":\"p\",\"title_color\":\"#828282\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"07a3709\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":30.3},\"flex_direction\":\"column\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"35dde42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Phone\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a04045\",\"elType\":\"widget\",\"settings\":{\"title\":\"+91 9133323459<br>\\n+91 89778 12345 \\/ +91 9030707212\",\"header_size\":\"p\",\"title_color\":\"#828282\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"92ae457\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"9fe0602\",\"elType\":\"widget\",\"settings\":{\"title\":\"Email\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bae5cd6\",\"elType\":\"widget\",\"settings\":{\"title\":\"info@beyondcolor.com\",\"header_size\":\"p\",\"title_color\":\"#828282\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1257, 198, '_elementor_source', 'post'),
(1258, 198, '_elementor_edit_mode', 'builder'),
(1259, 198, '_elementor_template_type', 'container'),
(1260, 198, '_elementor_version', '3.16.4'),
(1261, 198, '_elementor_pro_version', '3.16.2'),
(1262, 198, '_wp_page_template', 'default'),
(1263, 198, '_elementor_data', '[{\"id\":\"d81e4b6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"4979588\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b21af0\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"1441ec8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/beyond-color-black.png\",\"id\":69,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"200\",\"height\":\"\"},\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8085db1\",\"elType\":\"widget\",\"settings\":{\"title\":\"it\\u2019s time we inspire those who inspired us\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71cadfc\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"_id\":\"126d89e\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/pinterest-1.svg\",\"id\":159},\"library\":\"svg\"}},{\"_id\":\"0c974d5\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/linkedin-1.svg\",\"id\":158},\"library\":\"svg\"}},{\"_id\":\"28ae8d1\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/facebook.svg\",\"id\":152},\"library\":\"svg\"}},{\"_id\":\"66a011d\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram-1.svg\",\"id\":156},\"library\":\"svg\"}},{\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/reddit.svg\",\"id\":155},\"library\":\"svg\"},\"_id\":\"97955ae\",\"item_icon_color\":\"custom\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF\",\"icon_secondary_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e418e1e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"e86dd6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40.33},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"683804c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Address\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"259d1b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flat 601, C block, Siri Signature\\napts, Kakatiya Hills Hyderabad 500081\",\"header_size\":\"p\",\"title_color\":\"#828282\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"07a3709\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":30.3},\"flex_direction\":\"column\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"35dde42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Phone\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a04045\",\"elType\":\"widget\",\"settings\":{\"title\":\"+91 9133323459<br>\\n+91 89778 12345 \\/ +91 9030707212\",\"header_size\":\"p\",\"title_color\":\"#828282\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"92ae457\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"9fe0602\",\"elType\":\"widget\",\"settings\":{\"title\":\"Email\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bae5cd6\",\"elType\":\"widget\",\"settings\":{\"title\":\"info@beyondcolor.com\",\"header_size\":\"p\",\"title_color\":\"#828282\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ecb08cc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"188d19d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2023 beyond Color. All rights reserved | Privacy Policy | Terms in use | Branding Website Design by theav<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_order\":\"start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}]'),
(1267, 199, '_elementor_source', 'post'),
(1268, 199, '_elementor_edit_mode', 'builder'),
(1269, 199, '_elementor_template_type', 'container'),
(1270, 199, '_elementor_version', '3.16.4'),
(1271, 199, '_elementor_pro_version', '3.16.2'),
(1272, 199, '_wp_page_template', 'default');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1273, 199, '_elementor_data', '[{\"id\":\"d81e4b6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"4979588\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b21af0\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"1441ec8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/beyond-color-black.png\",\"id\":69,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"200\",\"height\":\"\"},\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8085db1\",\"elType\":\"widget\",\"settings\":{\"title\":\"it\\u2019s time we inspire those who inspired us\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71cadfc\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"_id\":\"126d89e\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/pinterest-1.svg\",\"id\":159},\"library\":\"svg\"}},{\"_id\":\"0c974d5\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/linkedin-1.svg\",\"id\":158},\"library\":\"svg\"}},{\"_id\":\"28ae8d1\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/facebook.svg\",\"id\":152},\"library\":\"svg\"}},{\"_id\":\"66a011d\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram-1.svg\",\"id\":156},\"library\":\"svg\"}},{\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/reddit.svg\",\"id\":155},\"library\":\"svg\"},\"_id\":\"97955ae\",\"item_icon_color\":\"custom\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF\",\"icon_secondary_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e418e1e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"e86dd6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40.33},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"683804c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Address\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"259d1b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flat 601, C block, Siri Signature\\napts, Kakatiya Hills Hyderabad 500081\",\"header_size\":\"p\",\"title_color\":\"#828282\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"07a3709\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":30.3},\"flex_direction\":\"column\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"35dde42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Phone\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a04045\",\"elType\":\"widget\",\"settings\":{\"title\":\"+91 9133323459<br>\\n+91 89778 12345 \\/ +91 9030707212\",\"header_size\":\"p\",\"title_color\":\"#828282\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"92ae457\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"9fe0602\",\"elType\":\"widget\",\"settings\":{\"title\":\"Email\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bae5cd6\",\"elType\":\"widget\",\"settings\":{\"title\":\"info@beyondcolor.com\",\"header_size\":\"p\",\"title_color\":\"#828282\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ecb08cc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"188d19d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2023 beyond Color. All rights reserved | Privacy Policy | Terms in use | Branding Website Design by theav<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_order\":\"start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}]'),
(1276, 200, '_elementor_source', 'post'),
(1277, 200, '_elementor_edit_mode', 'builder'),
(1278, 200, '_elementor_template_type', 'container'),
(1279, 200, '_elementor_version', '3.16.4'),
(1280, 200, '_elementor_pro_version', '3.16.2'),
(1281, 200, '_wp_page_template', 'default'),
(1282, 200, '_elementor_data', '[{\"id\":\"d81e4b6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"4979588\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b21af0\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"1441ec8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/beyond-color-black.png\",\"id\":69,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"200\",\"height\":\"\"},\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8085db1\",\"elType\":\"widget\",\"settings\":{\"title\":\"it\\u2019s time we inspire those who inspired us\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71cadfc\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"_id\":\"126d89e\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/pinterest-1.svg\",\"id\":159},\"library\":\"svg\"}},{\"_id\":\"0c974d5\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/linkedin-1.svg\",\"id\":158},\"library\":\"svg\"}},{\"_id\":\"28ae8d1\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/facebook.svg\",\"id\":152},\"library\":\"svg\"}},{\"_id\":\"66a011d\",\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram-1.svg\",\"id\":156},\"library\":\"svg\"}},{\"social_icon\":{\"value\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/reddit.svg\",\"id\":155},\"library\":\"svg\"},\"_id\":\"97955ae\",\"item_icon_color\":\"custom\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF\",\"icon_secondary_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e418e1e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"e86dd6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40.33},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"683804c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Address\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"259d1b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flat 601, C block, Siri Signature\\napts, Kakatiya Hills Hyderabad 500081\",\"header_size\":\"p\",\"title_color\":\"#828282\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"07a3709\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":30.3},\"flex_direction\":\"column\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"35dde42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Phone\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a04045\",\"elType\":\"widget\",\"settings\":{\"title\":\"+91 9133323459<br>\\n+91 89778 12345 \\/ +91 9030707212\",\"header_size\":\"p\",\"title_color\":\"#828282\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"92ae457\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"9fe0602\",\"elType\":\"widget\",\"settings\":{\"title\":\"Email\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bae5cd6\",\"elType\":\"widget\",\"settings\":{\"title\":\"info@beyondcolor.com\",\"header_size\":\"p\",\"title_color\":\"#828282\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ecb08cc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"188d19d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2023 beyond Color. All rights reserved | Privacy Policy | Terms in use | Branding Website Design by theav<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_order\":\"start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}]'),
(1284, 188, '_elementor_controls_usage', 'a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:5:\"width\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:7;s:11:\"header_size\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:5:\"align\";i:1;s:11:\"title_color\";i:7;s:21:\"typography_typography\";i:7;s:22:\"typography_font_family\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_font_weight\";i:7;s:25:\"typography_text_transform\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:6;s:8:\"_padding\";i:6;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:2:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_social_style\";a:3:{s:10:\"icon_color\";i:1;s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:14:\"flex_direction\";i:7;s:13:\"content_width\";i:5;s:5:\"width\";i:2;s:20:\"flex_justify_content\";i:1;s:16:\"flex_align_items\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:2:{s:7:\"padding\";i:2;s:10:\"_flex_size\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:11:\"_flex_order\";i:1;}}}}}'),
(1286, 201, '_elementor_edit_mode', 'builder'),
(1287, 201, '_elementor_template_type', 'wp-page'),
(1288, 201, '_elementor_version', '3.16.4'),
(1289, 201, '_wp_page_template', 'elementor_header_footer'),
(1290, 201, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1292, 201, '_elementor_pro_version', '3.16.2'),
(1294, 202, '_elementor_edit_mode', 'builder');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1295, 202, '_elementor_template_type', 'wp-page'),
(1296, 202, '_elementor_version', '3.16.4'),
(1297, 202, '_wp_page_template', 'elementor_header_footer'),
(1298, 202, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1300, 202, '_elementor_pro_version', '3.16.2'),
(1302, 203, '_elementor_edit_mode', 'builder'),
(1303, 203, '_elementor_template_type', 'wp-page'),
(1304, 203, '_elementor_version', '3.16.4'),
(1305, 203, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1306, 203, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1308, 203, '_elementor_pro_version', '3.16.2'),
(1312, 204, '_elementor_edit_mode', 'builder'),
(1313, 204, '_elementor_template_type', 'wp-page'),
(1314, 204, '_elementor_version', '3.16.4'),
(1315, 204, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1316, 204, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1318, 204, '_elementor_pro_version', '3.16.2'),
(1320, 205, '_elementor_edit_mode', 'builder'),
(1321, 205, '_elementor_template_type', 'wp-page'),
(1322, 205, '_elementor_version', '3.16.4'),
(1323, 205, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1324, 205, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1326, 205, '_elementor_pro_version', '3.16.2'),
(1328, 206, '_elementor_edit_mode', 'builder'),
(1329, 206, '_elementor_template_type', 'wp-page'),
(1330, 206, '_elementor_version', '3.16.4'),
(1331, 206, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1332, 206, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1334, 206, '_elementor_pro_version', '3.16.2'),
(1338, 52, '_elementor_edit_mode', 'builder'),
(1339, 52, '_elementor_template_type', 'wp-page'),
(1340, 52, '_elementor_version', '3.16.4'),
(1341, 52, '_elementor_pro_version', '3.16.2'),
(1361, 209, '_wp_attached_file', '2023/10/beyond.jpeg'),
(1362, 209, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:333;s:6:\"height\";i:588;s:4:\"file\";s:19:\"2023/10/beyond.jpeg\";s:8:\"filesize\";i:376801;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"beyond-170x300.jpeg\";s:5:\"width\";i:170;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18921;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"beyond-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8206;}s:14:\"ocean-thumb-ml\";a:5:{s:4:\"file\";s:19:\"beyond-333x450.jpeg\";s:5:\"width\";i:333;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58805;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1363, 210, '_wp_attached_file', '2023/10/beyond2.jpeg'),
(1364, 210, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:687;s:6:\"height\";i:588;s:4:\"file\";s:20:\"2023/10/beyond2.jpeg\";s:8:\"filesize\";i:439672;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"beyond2-300x257.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17770;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"beyond2-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5942;}s:13:\"ocean-thumb-m\";a:5:{s:4:\"file\";s:20:\"beyond2-600x588.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68895;}s:14:\"ocean-thumb-ml\";a:5:{s:4:\"file\";s:20:\"beyond2-687x450.jpeg\";s:5:\"width\";i:687;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66231;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1365, 211, '_wp_page_template', 'elementor_header_footer'),
(1366, 211, '_elementor_edit_mode', 'builder'),
(1367, 211, '_elementor_template_type', 'wp-page'),
(1368, 211, '_elementor_version', '3.16.4'),
(1369, 211, '_elementor_pro_version', '3.16.2'),
(1370, 212, '_wp_page_template', 'elementor_header_footer'),
(1371, 212, '_elementor_edit_mode', 'builder'),
(1372, 212, '_elementor_template_type', 'wp-page'),
(1373, 212, '_elementor_version', '3.16.4'),
(1374, 212, '_elementor_pro_version', '3.16.2'),
(1375, 52, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"bae3fd8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":70,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"339c2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coming Soon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Benne\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1376, 213, '_wp_page_template', 'elementor_header_footer'),
(1377, 213, '_elementor_edit_mode', 'builder'),
(1378, 213, '_elementor_template_type', 'wp-page'),
(1379, 213, '_elementor_version', '3.16.4'),
(1380, 213, '_elementor_pro_version', '3.16.2'),
(1381, 213, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":22.261},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24.337},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(1392, 215, '_elementor_edit_mode', 'builder'),
(1393, 215, '_elementor_template_type', 'section'),
(1394, 215, '_elementor_version', '3.16.4'),
(1395, 215, '_wp_page_template', 'default'),
(1396, 215, '_elementor_data', '[{\"id\":\"ada03dd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4000382\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\"},\"elements\":[{\"id\":\"f97e67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/beyond-color-black.png\",\"id\":69,\"size\":\"\",\"alt\":\"Beyond Color\",\"source\":\"library\"},\"link_to\":\"custom\",\"link\":{\"url\":\"\\/Home\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":19.959},\"_flex_align_self\":\"center\",\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"11551c5\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"300\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#000000\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":true}],\"isInner\":false}]'),
(1398, 215, '_elementor_pro_version', '3.16.2'),
(1402, 216, '_wp_attached_file', '2023/10/beyond4.jpeg'),
(1403, 216, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:687;s:6:\"height\";i:284;s:4:\"file\";s:20:\"2023/10/beyond4.jpeg\";s:8:\"filesize\";i:142775;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"beyond4-300x124.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:124;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4456;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"beyond4-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2374;}s:13:\"ocean-thumb-m\";a:5:{s:4:\"file\";s:20:\"beyond4-600x284.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15470;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1404, 217, '_wp_attached_file', '2023/10/beyond-3.jpeg'),
(1405, 217, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:686;s:6:\"height\";i:284;s:4:\"file\";s:21:\"2023/10/beyond-3.jpeg\";s:8:\"filesize\";i:274997;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"beyond-3-300x124.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:124;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7281;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"beyond-3-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5212;}s:13:\"ocean-thumb-m\";a:5:{s:4:\"file\";s:21:\"beyond-3-600x284.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36651;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1406, 218, '_wp_page_template', 'elementor_header_footer'),
(1407, 218, '_elementor_edit_mode', 'builder'),
(1408, 218, '_elementor_template_type', 'wp-page'),
(1409, 218, '_elementor_version', '3.16.4'),
(1410, 218, '_elementor_pro_version', '3.16.2'),
(1411, 218, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":22.261},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24.337},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(1413, 219, '_wp_page_template', 'elementor_header_footer'),
(1414, 219, '_elementor_edit_mode', 'builder'),
(1415, 219, '_elementor_template_type', 'wp-page'),
(1416, 219, '_elementor_version', '3.16.4'),
(1417, 219, '_elementor_pro_version', '3.16.2'),
(1418, 219, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":22.261},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24.337},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(1420, 220, '_wp_page_template', 'elementor_header_footer'),
(1421, 220, '_elementor_edit_mode', 'builder'),
(1422, 220, '_elementor_template_type', 'wp-page'),
(1423, 220, '_elementor_version', '3.16.4'),
(1424, 220, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1425, 220, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":507,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1428, 221, '_wp_page_template', 'elementor_header_footer'),
(1429, 221, '_elementor_edit_mode', 'builder'),
(1430, 221, '_elementor_template_type', 'wp-page'),
(1431, 221, '_elementor_version', '3.16.4'),
(1432, 221, '_elementor_pro_version', '3.16.2'),
(1433, 221, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":507,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1435, 222, '_wp_page_template', 'elementor_header_footer'),
(1436, 222, '_elementor_edit_mode', 'builder'),
(1437, 222, '_elementor_template_type', 'wp-page'),
(1438, 222, '_elementor_version', '3.16.4'),
(1439, 222, '_elementor_pro_version', '3.16.2'),
(1440, 222, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":507,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1442, 223, '_wp_page_template', 'elementor_header_footer'),
(1443, 223, '_elementor_edit_mode', 'builder'),
(1444, 223, '_elementor_template_type', 'wp-page'),
(1445, 223, '_elementor_version', '3.16.4'),
(1446, 223, '_elementor_pro_version', '3.16.2'),
(1447, 223, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":507,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1450, 224, '_wp_page_template', 'elementor_header_footer'),
(1451, 224, '_elementor_edit_mode', 'builder'),
(1452, 224, '_elementor_template_type', 'wp-page'),
(1453, 224, '_elementor_version', '3.16.4'),
(1454, 224, '_elementor_pro_version', '3.16.2'),
(1455, 224, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":507,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1457, 225, '_wp_page_template', 'elementor_header_footer'),
(1458, 225, '_elementor_edit_mode', 'builder'),
(1459, 225, '_elementor_template_type', 'wp-page'),
(1460, 225, '_elementor_version', '3.16.4'),
(1461, 225, '_elementor_pro_version', '3.16.2'),
(1462, 225, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":507,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1464, 226, '_wp_page_template', 'elementor_header_footer'),
(1465, 226, '_elementor_edit_mode', 'builder'),
(1466, 226, '_elementor_template_type', 'wp-page'),
(1467, 226, '_elementor_version', '3.16.4'),
(1468, 226, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1469, 226, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":507,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1472, 227, '_wp_page_template', 'elementor_header_footer'),
(1473, 227, '_elementor_edit_mode', 'builder'),
(1474, 227, '_elementor_template_type', 'wp-page'),
(1475, 227, '_elementor_version', '3.16.4'),
(1476, 227, '_elementor_pro_version', '3.16.2'),
(1477, 227, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":507,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1479, 228, '_wp_page_template', 'elementor_header_footer'),
(1480, 228, '_elementor_edit_mode', 'builder'),
(1481, 228, '_elementor_template_type', 'wp-page'),
(1482, 228, '_elementor_version', '3.16.4'),
(1483, 228, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1484, 228, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":507,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1486, 229, '_wp_page_template', 'elementor_header_footer'),
(1487, 229, '_elementor_edit_mode', 'builder'),
(1488, 229, '_elementor_template_type', 'wp-page'),
(1489, 229, '_elementor_version', '3.16.4'),
(1490, 229, '_elementor_pro_version', '3.16.2'),
(1491, 229, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":507,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1494, 230, '_wp_page_template', 'elementor_header_footer'),
(1495, 230, '_elementor_edit_mode', 'builder'),
(1496, 230, '_elementor_template_type', 'wp-page'),
(1497, 230, '_elementor_version', '3.16.4'),
(1498, 230, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1499, 230, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":507,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1501, 231, '_wp_page_template', 'elementor_header_footer'),
(1502, 231, '_elementor_edit_mode', 'builder'),
(1503, 231, '_elementor_template_type', 'wp-page'),
(1504, 231, '_elementor_version', '3.16.4'),
(1505, 231, '_elementor_pro_version', '3.16.2'),
(1506, 231, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":507,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1508, 232, '_wp_page_template', 'elementor_header_footer'),
(1509, 232, '_elementor_edit_mode', 'builder'),
(1510, 232, '_elementor_template_type', 'wp-page'),
(1511, 232, '_elementor_version', '3.16.4'),
(1512, 232, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1513, 232, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":507,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1517, 233, '_wp_page_template', 'elementor_header_footer'),
(1518, 233, '_elementor_edit_mode', 'builder'),
(1519, 233, '_elementor_template_type', 'wp-page'),
(1520, 233, '_elementor_version', '3.16.4'),
(1521, 233, '_elementor_pro_version', '3.16.2'),
(1522, 233, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":507,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1525, 234, '_wp_page_template', 'elementor_header_footer'),
(1526, 234, '_elementor_edit_mode', 'builder'),
(1527, 234, '_elementor_template_type', 'wp-page'),
(1528, 234, '_elementor_version', '3.16.4'),
(1529, 234, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1530, 234, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":507,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1533, 235, '_wp_page_template', 'elementor_header_footer'),
(1534, 235, '_elementor_edit_mode', 'builder'),
(1535, 235, '_elementor_template_type', 'wp-page'),
(1536, 235, '_elementor_version', '3.16.4'),
(1537, 235, '_elementor_pro_version', '3.16.2'),
(1538, 235, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":507,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1543, 236, '_wp_page_template', 'elementor_header_footer'),
(1544, 236, '_elementor_edit_mode', 'builder'),
(1545, 236, '_elementor_template_type', 'wp-page'),
(1546, 236, '_elementor_version', '3.16.4'),
(1547, 236, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1548, 236, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":507,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1551, 237, '_wp_page_template', 'elementor_header_footer'),
(1552, 237, '_elementor_edit_mode', 'builder'),
(1553, 237, '_elementor_template_type', 'wp-page'),
(1554, 237, '_elementor_version', '3.16.4'),
(1555, 237, '_elementor_pro_version', '3.16.2'),
(1556, 237, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":507,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1559, 238, '_wp_page_template', 'elementor_header_footer'),
(1560, 238, '_elementor_edit_mode', 'builder'),
(1561, 238, '_elementor_template_type', 'wp-page'),
(1562, 238, '_elementor_version', '3.16.4'),
(1563, 238, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1564, 238, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":507,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1569, 239, '_wp_page_template', 'elementor_header_footer'),
(1570, 239, '_elementor_edit_mode', 'builder'),
(1571, 239, '_elementor_template_type', 'wp-page'),
(1572, 239, '_elementor_version', '3.16.4'),
(1573, 239, '_elementor_pro_version', '3.16.2'),
(1574, 239, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":507,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1577, 240, '_wp_page_template', 'elementor_header_footer'),
(1578, 240, '_elementor_edit_mode', 'builder'),
(1579, 240, '_elementor_template_type', 'wp-page'),
(1580, 240, '_elementor_version', '3.16.4'),
(1581, 240, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1582, 240, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":507,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1585, 241, '_wp_page_template', 'elementor_header_footer'),
(1586, 241, '_elementor_edit_mode', 'builder'),
(1587, 241, '_elementor_template_type', 'wp-page'),
(1588, 241, '_elementor_version', '3.16.4'),
(1589, 241, '_elementor_pro_version', '3.16.2'),
(1590, 241, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":507,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1595, 242, '_wp_page_template', 'elementor_header_footer'),
(1596, 242, '_elementor_edit_mode', 'builder'),
(1597, 242, '_elementor_template_type', 'wp-page'),
(1598, 242, '_elementor_version', '3.16.4'),
(1599, 242, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1600, 242, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":507,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1603, 243, '_wp_page_template', 'elementor_header_footer'),
(1604, 243, '_elementor_edit_mode', 'builder'),
(1605, 243, '_elementor_template_type', 'wp-page'),
(1606, 243, '_elementor_version', '3.16.4'),
(1607, 243, '_elementor_pro_version', '3.16.2'),
(1608, 243, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":507,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1611, 244, '_wp_page_template', 'elementor_header_footer'),
(1612, 244, '_elementor_edit_mode', 'builder'),
(1613, 244, '_elementor_template_type', 'wp-page'),
(1614, 244, '_elementor_version', '3.16.4'),
(1615, 244, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1616, 244, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":507,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1621, 245, '_wp_page_template', 'elementor_header_footer'),
(1622, 245, '_elementor_edit_mode', 'builder'),
(1623, 245, '_elementor_template_type', 'wp-page'),
(1624, 245, '_elementor_version', '3.16.4'),
(1625, 245, '_elementor_pro_version', '3.16.2'),
(1626, 245, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":507,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1629, 246, '_wp_page_template', 'elementor_header_footer'),
(1630, 246, '_elementor_edit_mode', 'builder'),
(1631, 246, '_elementor_template_type', 'wp-page'),
(1632, 246, '_elementor_version', '3.16.4'),
(1633, 246, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1634, 246, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":507,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1637, 247, '_wp_page_template', 'elementor_header_footer'),
(1638, 247, '_elementor_edit_mode', 'builder'),
(1639, 247, '_elementor_template_type', 'wp-page'),
(1640, 247, '_elementor_version', '3.16.4'),
(1641, 247, '_elementor_pro_version', '3.16.2'),
(1642, 247, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_align_items\":\"flex-end\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":507,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1647, 248, '_wp_page_template', 'elementor_header_footer'),
(1648, 248, '_elementor_edit_mode', 'builder'),
(1649, 248, '_elementor_template_type', 'wp-page'),
(1650, 248, '_elementor_version', '3.16.4'),
(1651, 248, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1652, 248, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_align_items\":\"flex-end\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":507,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1655, 249, '_wp_page_template', 'elementor_header_footer'),
(1656, 249, '_elementor_edit_mode', 'builder'),
(1657, 249, '_elementor_template_type', 'wp-page'),
(1658, 249, '_elementor_version', '3.16.4'),
(1659, 249, '_elementor_pro_version', '3.16.2'),
(1660, 249, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_align_items\":\"flex-end\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":507,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1663, 250, '_wp_page_template', 'elementor_header_footer'),
(1664, 250, '_elementor_edit_mode', 'builder'),
(1665, 250, '_elementor_template_type', 'wp-page'),
(1666, 250, '_elementor_version', '3.16.4'),
(1667, 250, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1668, 250, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":507,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1673, 251, '_wp_page_template', 'elementor_header_footer'),
(1674, 251, '_elementor_edit_mode', 'builder'),
(1675, 251, '_elementor_template_type', 'wp-page'),
(1676, 251, '_elementor_version', '3.16.4'),
(1677, 251, '_elementor_pro_version', '3.16.2'),
(1678, 251, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":507,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1681, 252, '_wp_page_template', 'elementor_header_footer'),
(1682, 252, '_elementor_edit_mode', 'builder'),
(1683, 252, '_elementor_template_type', 'wp-page'),
(1684, 252, '_elementor_version', '3.16.4'),
(1685, 252, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1686, 252, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":507,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1689, 253, '_wp_page_template', 'elementor_header_footer'),
(1690, 253, '_elementor_edit_mode', 'builder'),
(1691, 253, '_elementor_template_type', 'wp-page'),
(1692, 253, '_elementor_version', '3.16.4'),
(1693, 253, '_elementor_pro_version', '3.16.2'),
(1694, 253, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":507,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1699, 254, '_wp_page_template', 'elementor_header_footer'),
(1700, 254, '_elementor_edit_mode', 'builder'),
(1701, 254, '_elementor_template_type', 'wp-page'),
(1702, 254, '_elementor_version', '3.16.4'),
(1703, 254, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1704, 254, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":507,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1707, 255, '_wp_page_template', 'elementor_header_footer'),
(1708, 255, '_elementor_edit_mode', 'builder'),
(1709, 255, '_elementor_template_type', 'wp-page'),
(1710, 255, '_elementor_version', '3.16.4'),
(1711, 255, '_elementor_pro_version', '3.16.2'),
(1712, 255, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":507,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1715, 256, '_wp_page_template', 'elementor_header_footer'),
(1716, 256, '_elementor_edit_mode', 'builder'),
(1717, 256, '_elementor_template_type', 'wp-page'),
(1718, 256, '_elementor_version', '3.16.4'),
(1719, 256, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1720, 256, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":507,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1725, 257, '_wp_page_template', 'elementor_header_footer'),
(1726, 257, '_elementor_edit_mode', 'builder'),
(1727, 257, '_elementor_template_type', 'wp-page'),
(1728, 257, '_elementor_version', '3.16.4'),
(1729, 257, '_elementor_pro_version', '3.16.2'),
(1730, 257, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":507,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1733, 258, '_wp_page_template', 'elementor_header_footer'),
(1734, 258, '_elementor_edit_mode', 'builder'),
(1735, 258, '_elementor_template_type', 'wp-page'),
(1736, 258, '_elementor_version', '3.16.4'),
(1737, 258, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1738, 258, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":507,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1741, 259, '_wp_page_template', 'elementor_header_footer'),
(1742, 259, '_elementor_edit_mode', 'builder'),
(1743, 259, '_elementor_template_type', 'wp-page'),
(1744, 259, '_elementor_version', '3.16.4'),
(1745, 259, '_elementor_pro_version', '3.16.2'),
(1746, 259, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":507,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1750, 260, '_wp_page_template', 'elementor_header_footer'),
(1751, 260, '_elementor_edit_mode', 'builder'),
(1752, 260, '_elementor_template_type', 'wp-page'),
(1753, 260, '_elementor_version', '3.16.4'),
(1754, 260, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1755, 260, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":507,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1757, 261, '_wp_page_template', 'elementor_header_footer'),
(1758, 261, '_elementor_edit_mode', 'builder'),
(1759, 261, '_elementor_template_type', 'wp-page'),
(1760, 261, '_elementor_version', '3.16.4'),
(1761, 261, '_elementor_pro_version', '3.16.2'),
(1762, 261, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":507,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1764, 262, '_wp_page_template', 'elementor_header_footer'),
(1765, 262, '_elementor_edit_mode', 'builder'),
(1766, 262, '_elementor_template_type', 'wp-page'),
(1767, 262, '_elementor_version', '3.16.4'),
(1768, 262, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1769, 262, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1773, 263, '_wp_page_template', 'elementor_header_footer'),
(1774, 263, '_elementor_edit_mode', 'builder'),
(1775, 263, '_elementor_template_type', 'wp-page'),
(1776, 263, '_elementor_version', '3.16.4'),
(1777, 263, '_elementor_pro_version', '3.16.2'),
(1778, 263, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1781, 264, '_wp_page_template', 'elementor_header_footer'),
(1782, 264, '_elementor_edit_mode', 'builder'),
(1783, 264, '_elementor_template_type', 'wp-page'),
(1784, 264, '_elementor_version', '3.16.4'),
(1785, 264, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1786, 264, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25.394},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1789, 265, '_wp_page_template', 'elementor_header_footer'),
(1790, 265, '_elementor_edit_mode', 'builder'),
(1791, 265, '_elementor_template_type', 'wp-page'),
(1792, 265, '_elementor_version', '3.16.4'),
(1793, 265, '_elementor_pro_version', '3.16.2'),
(1794, 265, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1798, 266, '_wp_page_template', 'elementor_header_footer'),
(1799, 266, '_elementor_edit_mode', 'builder'),
(1800, 266, '_elementor_template_type', 'wp-page'),
(1801, 266, '_elementor_version', '3.16.4'),
(1802, 266, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1803, 266, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1805, 267, '_wp_page_template', 'elementor_header_footer'),
(1806, 267, '_elementor_edit_mode', 'builder'),
(1807, 267, '_elementor_template_type', 'wp-page'),
(1808, 267, '_elementor_version', '3.16.4'),
(1809, 267, '_elementor_pro_version', '3.16.2'),
(1810, 267, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1812, 268, '_wp_page_template', 'elementor_header_footer'),
(1813, 268, '_elementor_edit_mode', 'builder'),
(1814, 268, '_elementor_template_type', 'wp-page'),
(1815, 268, '_elementor_version', '3.16.4'),
(1816, 268, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1817, 268, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1821, 269, '_wp_page_template', 'elementor_header_footer'),
(1822, 269, '_elementor_edit_mode', 'builder'),
(1823, 269, '_elementor_template_type', 'wp-page'),
(1824, 269, '_elementor_version', '3.16.4'),
(1825, 269, '_elementor_pro_version', '3.16.2'),
(1826, 269, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1829, 270, '_wp_page_template', 'elementor_header_footer'),
(1830, 270, '_elementor_edit_mode', 'builder'),
(1831, 270, '_elementor_template_type', 'wp-page'),
(1832, 270, '_elementor_version', '3.16.4'),
(1833, 270, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1834, 270, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1837, 271, '_wp_page_template', 'elementor_header_footer'),
(1838, 271, '_elementor_edit_mode', 'builder'),
(1839, 271, '_elementor_template_type', 'wp-page'),
(1840, 271, '_elementor_version', '3.16.4'),
(1841, 271, '_elementor_pro_version', '3.16.2'),
(1842, 271, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1847, 272, '_wp_page_template', 'elementor_header_footer'),
(1848, 272, '_elementor_edit_mode', 'builder'),
(1849, 272, '_elementor_template_type', 'wp-page'),
(1850, 272, '_elementor_version', '3.16.4'),
(1851, 272, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1852, 272, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1855, 273, '_wp_page_template', 'elementor_header_footer'),
(1856, 273, '_elementor_edit_mode', 'builder'),
(1857, 273, '_elementor_template_type', 'wp-page'),
(1858, 273, '_elementor_version', '3.16.4'),
(1859, 273, '_elementor_pro_version', '3.16.2'),
(1860, 273, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1863, 274, '_wp_page_template', 'elementor_header_footer'),
(1864, 274, '_elementor_edit_mode', 'builder'),
(1865, 274, '_elementor_template_type', 'wp-page'),
(1866, 274, '_elementor_version', '3.16.4'),
(1867, 274, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1868, 274, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1872, 275, '_wp_page_template', 'elementor_header_footer'),
(1873, 275, '_elementor_edit_mode', 'builder'),
(1874, 275, '_elementor_template_type', 'wp-page'),
(1875, 275, '_elementor_version', '3.16.4'),
(1876, 275, '_elementor_pro_version', '3.16.2'),
(1877, 275, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1879, 276, '_wp_page_template', 'elementor_header_footer'),
(1880, 276, '_elementor_edit_mode', 'builder'),
(1881, 276, '_elementor_template_type', 'wp-page'),
(1882, 276, '_elementor_version', '3.16.4'),
(1883, 276, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1884, 276, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1886, 277, '_wp_page_template', 'elementor_header_footer'),
(1887, 277, '_elementor_edit_mode', 'builder'),
(1888, 277, '_elementor_template_type', 'wp-page'),
(1889, 277, '_elementor_version', '3.16.4'),
(1890, 277, '_elementor_pro_version', '3.16.2'),
(1891, 277, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1895, 278, '_edit_lock', '1696326911:1'),
(1896, 278, '_wp_page_template', 'elementor_header_footer'),
(1897, 278, '_elementor_edit_mode', 'builder'),
(1898, 278, '_elementor_template_type', 'wp-page'),
(1899, 278, '_elementor_version', '3.16.4'),
(1900, 278, '_elementor_pro_version', '3.16.2'),
(1901, 280, '_wp_page_template', 'elementor_header_footer'),
(1902, 280, '_elementor_edit_mode', 'builder'),
(1903, 280, '_elementor_template_type', 'wp-page'),
(1904, 280, '_elementor_version', '3.16.4'),
(1905, 280, '_elementor_pro_version', '3.16.2'),
(1906, 281, '_wp_page_template', 'elementor_header_footer'),
(1907, 281, '_elementor_edit_mode', 'builder'),
(1908, 281, '_elementor_template_type', 'wp-page'),
(1909, 281, '_elementor_version', '3.16.4'),
(1910, 281, '_elementor_pro_version', '3.16.2'),
(1911, 278, '_elementor_data', '[{\"id\":\"0d928d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"95f6fd3\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"6cc53d5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"3a41c59\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a89296\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8a72905\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"aab0600\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"eed2392\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":30},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"b23647d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Type of Project:\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a1a633\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9aad903\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lorem Ipsum\",\"title_color\":\"#565656\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b80d0ee\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"204ea0f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":30},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"c48ad6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Size of Project:\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2aee3b9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7a92112\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lorem Ipsum\",\"title_color\":\"#565656\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f9d122e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"be44496\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":30},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"811e838\",\"elType\":\"widget\",\"settings\":{\"title\":\"Architect\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ad166b2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b039149\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lorem Ipsum\",\"title_color\":\"#565656\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"244baf9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"206090b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":30},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"33e72e6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Used\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"37f4084\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f380c1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lorem Ipsum\",\"title_color\":\"#565656\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b47415\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40b5daa\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1912, 282, '_wp_page_template', 'elementor_header_footer'),
(1913, 282, '_elementor_edit_mode', 'builder'),
(1914, 282, '_elementor_template_type', 'wp-page'),
(1915, 282, '_elementor_version', '3.16.4'),
(1916, 282, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1917, 282, '_elementor_data', '[{\"id\":\"0d928d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"95f6fd3\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"6cc53d5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"3a41c59\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a89296\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8a72905\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"aab0600\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"eed2392\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":22.755},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"b23647d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Type of Project:\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a1a633\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9aad903\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lorem Ipsum\",\"title_color\":\"#565656\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b80d0ee\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"204ea0f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":22.755},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"c48ad6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Size of Project:\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2aee3b9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7a92112\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lorem Ipsum\",\"title_color\":\"#565656\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f9d122e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"be44496\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":22.755},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"811e838\",\"elType\":\"widget\",\"settings\":{\"title\":\"Architect\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ad166b2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b039149\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lorem Ipsum\",\"title_color\":\"#565656\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"244baf9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"206090b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":22.755},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"33e72e6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Used\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"37f4084\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f380c1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lorem Ipsum\",\"title_color\":\"#565656\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b47415\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40b5daa\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1921, 283, '_wp_page_template', 'elementor_header_footer'),
(1922, 283, '_elementor_edit_mode', 'builder'),
(1923, 283, '_elementor_template_type', 'wp-page'),
(1924, 283, '_elementor_version', '3.16.4'),
(1925, 283, '_elementor_pro_version', '3.16.2'),
(1926, 283, '_elementor_data', '[{\"id\":\"0d928d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"95f6fd3\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"6cc53d5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"3a41c59\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a89296\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8a72905\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"aab0600\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"eed2392\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":22.755},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"b23647d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Type of Project:\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a1a633\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9aad903\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lorem Ipsum\",\"title_color\":\"#565656\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b80d0ee\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"204ea0f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":22.755},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"c48ad6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Size of Project:\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2aee3b9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7a92112\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lorem Ipsum\",\"title_color\":\"#565656\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f9d122e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"be44496\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":22.755},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"811e838\",\"elType\":\"widget\",\"settings\":{\"title\":\"Architect\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ad166b2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b039149\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lorem Ipsum\",\"title_color\":\"#565656\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"244baf9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"206090b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":22.755},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"33e72e6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Used\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"37f4084\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f380c1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lorem Ipsum\",\"title_color\":\"#565656\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b47415\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40b5daa\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1929, 284, '_wp_page_template', 'elementor_header_footer'),
(1930, 284, '_elementor_edit_mode', 'builder'),
(1931, 284, '_elementor_template_type', 'wp-page'),
(1932, 284, '_elementor_version', '3.16.4'),
(1933, 284, '_elementor_pro_version', '3.16.2'),
(1934, 284, '_elementor_data', '[{\"id\":\"0d928d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"95f6fd3\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"6cc53d5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"3a41c59\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a89296\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8a72905\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"aab0600\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"eed2392\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":22.755},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"b23647d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Type of Project:\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a1a633\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9aad903\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lorem Ipsum\",\"title_color\":\"#565656\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b80d0ee\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"204ea0f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":22.755},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"c48ad6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Size of Project:\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2aee3b9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7a92112\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lorem Ipsum\",\"title_color\":\"#565656\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f9d122e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"be44496\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":22.755},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"811e838\",\"elType\":\"widget\",\"settings\":{\"title\":\"Architect\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ad166b2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b039149\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lorem Ipsum\",\"title_color\":\"#565656\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"244baf9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"206090b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":22.755},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"33e72e6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Used\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"37f4084\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f380c1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lorem Ipsum\",\"title_color\":\"#565656\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b47415\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40b5daa\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1937, 285, '_wp_page_template', 'elementor_header_footer'),
(1938, 285, '_elementor_edit_mode', 'builder'),
(1939, 285, '_elementor_template_type', 'wp-page'),
(1940, 285, '_elementor_version', '3.16.4'),
(1941, 285, '_elementor_pro_version', '3.16.2'),
(1942, 285, '_elementor_data', '[{\"id\":\"0d928d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"95f6fd3\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"6cc53d5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"3a41c59\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a89296\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8a72905\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"aab0600\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"eed2392\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":30},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"b23647d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Type of Project:\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a1a633\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9aad903\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lorem Ipsum\",\"title_color\":\"#565656\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b80d0ee\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"204ea0f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":30},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"c48ad6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Size of Project:\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2aee3b9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7a92112\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lorem Ipsum\",\"title_color\":\"#565656\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f9d122e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"be44496\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":30},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"811e838\",\"elType\":\"widget\",\"settings\":{\"title\":\"Architect\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ad166b2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b039149\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lorem Ipsum\",\"title_color\":\"#565656\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"244baf9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"206090b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":30},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"33e72e6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Material Used\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"37f4084\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f380c1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lorem Ipsum\",\"title_color\":\"#565656\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6b47415\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40b5daa\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1945, 278, '_elementor_controls_usage', 'a:4:{s:8:\"template\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:16:\"section_template\";a:1:{s:11:\"template_id\";i:2;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:17;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:4:{s:14:\"flex_direction\";i:7;s:13:\"content_width\";i:13;s:5:\"width\";i:6;s:20:\"flex_justify_content\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:2:{s:7:\"padding\";i:11;s:10:\"_flex_size\";i:4;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:5:\"width\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:8;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:8;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:4;s:25:\"typography_text_transform\";i:4;}}}}}'),
(1947, 286, '_elementor_edit_mode', 'builder'),
(1948, 286, '_elementor_template_type', 'wp-page'),
(1949, 286, '_elementor_version', '3.16.4'),
(1950, 286, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1951, 286, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1953, 286, '_elementor_pro_version', '3.16.2'),
(1955, 287, '_elementor_edit_mode', 'builder'),
(1956, 287, '_elementor_template_type', 'wp-page'),
(1957, 287, '_elementor_version', '3.16.4'),
(1958, 287, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1959, 287, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1961, 287, '_elementor_pro_version', '3.16.2'),
(1963, 288, '_elementor_edit_mode', 'builder'),
(1964, 288, '_elementor_template_type', 'wp-page'),
(1965, 288, '_elementor_version', '3.16.4'),
(1966, 288, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1967, 288, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1969, 288, '_elementor_pro_version', '3.16.2'),
(1972, 289, '_elementor_edit_mode', 'builder'),
(1973, 289, '_elementor_template_type', 'wp-page'),
(1974, 289, '_elementor_version', '3.16.4'),
(1975, 289, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1976, 289, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1978, 289, '_elementor_pro_version', '3.16.2'),
(1979, 290, '_elementor_edit_mode', 'builder'),
(1980, 290, '_elementor_template_type', 'wp-page'),
(1981, 290, '_elementor_version', '3.16.4'),
(1982, 290, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1983, 290, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1985, 290, '_elementor_pro_version', '3.16.2'),
(1986, 291, '_elementor_edit_mode', 'builder'),
(1987, 291, '_elementor_template_type', 'wp-page'),
(1988, 291, '_elementor_version', '3.16.4'),
(1989, 291, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1990, 291, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(1992, 291, '_elementor_pro_version', '3.16.2'),
(1994, 292, '_elementor_edit_mode', 'builder'),
(1995, 292, '_elementor_template_type', 'wp-page'),
(1996, 292, '_elementor_version', '3.16.4'),
(1997, 292, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1998, 292, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2000, 292, '_elementor_pro_version', '3.16.2'),
(2001, 293, '_elementor_edit_mode', 'builder'),
(2002, 293, '_elementor_template_type', 'wp-page'),
(2003, 293, '_elementor_version', '3.16.4'),
(2004, 293, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2005, 293, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2007, 293, '_elementor_pro_version', '3.16.2'),
(2008, 294, '_elementor_edit_mode', 'builder'),
(2009, 294, '_elementor_template_type', 'wp-page'),
(2010, 294, '_elementor_version', '3.16.4'),
(2011, 294, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2012, 294, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2014, 294, '_elementor_pro_version', '3.16.2'),
(2016, 54, '_elementor_edit_mode', 'builder'),
(2017, 54, '_elementor_template_type', 'wp-page'),
(2018, 54, '_elementor_version', '3.16.4'),
(2019, 54, '_elementor_pro_version', '3.16.2'),
(2029, 297, '_wp_page_template', 'elementor_header_footer'),
(2030, 297, '_elementor_edit_mode', 'builder'),
(2031, 297, '_elementor_template_type', 'wp-page'),
(2032, 297, '_elementor_version', '3.16.4'),
(2033, 297, '_elementor_pro_version', '3.16.2'),
(2034, 298, '_wp_page_template', 'elementor_header_footer'),
(2035, 298, '_elementor_edit_mode', 'builder'),
(2036, 298, '_elementor_template_type', 'wp-page'),
(2037, 298, '_elementor_version', '3.16.4'),
(2038, 298, '_elementor_pro_version', '3.16.2'),
(2039, 54, '_elementor_data', '[{\"id\":\"a286b48\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1e548fb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"8f68f94\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/about.jpeg\",\"id\":301,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"2c74fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Benne\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"200\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5bf99d7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cde5248\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad6828c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"47ca214\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Benne\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0982b89\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"78e69af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9fc731\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1ee9a1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d75dd93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"69fd541\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Vision\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Benne\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ad5e922\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"b7b882e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20d7ba1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"403a2db\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"09af20d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7950ca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Benne\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"805d9be\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"66eb7d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br \\/>We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.<\\/p><p>We exist to redefine luxury with a conscience.<\\/p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don\\u2019t just tell stories; they create legacies.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1a1c8b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e4d0ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"bb90926\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9899187\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/KV_IMG1.jpg\",\"id\":440,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a6745f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"55\",\"isLinked\":false}},\"elements\":[{\"id\":\"fd80b31\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kumar Verma\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Benne\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"794cb40\",\"elType\":\"widget\",\"settings\":{\"title\":\"Founder & CEO\",\"header_size\":\"p\",\"title_color\":\"#505050\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bed21f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar\\u2019s journey is one of unwavering passion and dedication.<\\/p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he\\u2019s a visionary who believes in the extraordinary.<\\/p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#8B8B8B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"430da80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2760756\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2040, 299, '_wp_page_template', 'elementor_header_footer'),
(2041, 299, '_elementor_edit_mode', 'builder'),
(2042, 299, '_elementor_template_type', 'wp-page'),
(2043, 299, '_elementor_version', '3.16.4'),
(2044, 299, '_elementor_pro_version', '3.16.2'),
(2045, 299, '_elementor_data', '[{\"id\":\"a286b48\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1e548fb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"8f68f94\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/about.jpeg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":false}]'),
(2050, 301, '_wp_attached_file', '2023/10/about.jpeg'),
(2051, 301, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1381;s:6:\"height\";i:702;s:4:\"file\";s:18:\"2023/10/about.jpeg\";s:8:\"filesize\";i:194075;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"about-300x152.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6551;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"about-1024x521.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:521;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85561;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"about-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3867;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"about-768x390.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:390;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47223;}s:13:\"ocean-thumb-m\";a:5:{s:4:\"file\";s:18:\"about-600x600.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70446;}s:14:\"ocean-thumb-ml\";a:5:{s:4:\"file\";s:18:\"about-800x450.jpeg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59013;}s:13:\"ocean-thumb-l\";a:5:{s:4:\"file\";s:19:\"about-1200x700.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:135830;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2060, 303, '_wp_page_template', 'elementor_header_footer'),
(2061, 303, '_elementor_edit_mode', 'builder'),
(2062, 303, '_elementor_template_type', 'wp-page'),
(2063, 303, '_elementor_version', '3.16.4'),
(2064, 303, '_elementor_pro_version', '3.16.2'),
(2065, 303, '_elementor_data', '[{\"id\":\"a286b48\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1e548fb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"8f68f94\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/about.jpeg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":false}]'),
(2067, 304, '_wp_page_template', 'elementor_header_footer'),
(2068, 304, '_elementor_edit_mode', 'builder'),
(2069, 304, '_elementor_template_type', 'wp-page'),
(2070, 304, '_elementor_version', '3.16.4'),
(2071, 304, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2072, 304, '_elementor_data', '[{\"id\":\"a286b48\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1e548fb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"8f68f94\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/about.jpeg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":false}]'),
(2074, 305, '_wp_page_template', 'elementor_header_footer'),
(2075, 305, '_elementor_edit_mode', 'builder'),
(2076, 305, '_elementor_template_type', 'wp-page'),
(2077, 305, '_elementor_version', '3.16.4'),
(2078, 305, '_elementor_pro_version', '3.16.2'),
(2079, 305, '_elementor_data', '[{\"id\":\"a286b48\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1e548fb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"8f68f94\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/about.jpeg\",\"id\":300,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":false}]'),
(2082, 306, '_wp_attached_file', '2023/10/kumar.jpeg'),
(2083, 306, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:674;s:6:\"height\";i:658;s:4:\"file\";s:18:\"2023/10/kumar.jpeg\";s:8:\"filesize\";i:290784;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"kumar-300x293.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:293;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18427;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"kumar-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6260;}s:13:\"ocean-thumb-m\";a:5:{s:4:\"file\";s:18:\"kumar-600x600.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54481;}s:14:\"ocean-thumb-ml\";a:5:{s:4:\"file\";s:18:\"kumar-674x450.jpeg\";s:5:\"width\";i:674;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49486;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2084, 307, '_wp_page_template', 'elementor_header_footer'),
(2085, 307, '_elementor_edit_mode', 'builder'),
(2086, 307, '_elementor_template_type', 'wp-page'),
(2087, 307, '_elementor_version', '3.16.4'),
(2088, 307, '_elementor_pro_version', '3.16.2'),
(2089, 307, '_elementor_data', '[{\"id\":\"a286b48\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1e548fb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"8f68f94\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/about.jpeg\",\"id\":300,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":false}]'),
(2091, 308, '_wp_page_template', 'elementor_header_footer'),
(2092, 308, '_elementor_edit_mode', 'builder'),
(2093, 308, '_elementor_template_type', 'wp-page'),
(2094, 308, '_elementor_version', '3.16.4'),
(2095, 308, '_elementor_pro_version', '3.16.2'),
(2096, 308, '_elementor_data', '[{\"id\":\"a286b48\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1e548fb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"8f68f94\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/about.jpeg\",\"id\":300,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":false}]'),
(2098, 309, '_wp_page_template', 'elementor_header_footer'),
(2099, 309, '_elementor_edit_mode', 'builder'),
(2100, 309, '_elementor_template_type', 'wp-page'),
(2101, 309, '_elementor_version', '3.16.4'),
(2102, 309, '_elementor_pro_version', '3.16.2'),
(2103, 309, '_elementor_data', '[{\"id\":\"a286b48\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1e548fb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"8f68f94\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/about.jpeg\",\"id\":300,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"2c74fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5bf99d7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cde5248\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad6828c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"47ca214\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0982b89\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"78e69af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9fc731\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1ee9a1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d75dd93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"69fd541\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Vision\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ad5e922\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"b7b882e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20d7ba1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"403a2db\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"09af20d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7950ca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"805d9be\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"66eb7d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1a1c8b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e4d0ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"bb90926\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9899187\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kumar.jpeg\",\"id\":306,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a6745f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"fd80b31\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kumar Varma\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"794cb40\",\"elType\":\"widget\",\"settings\":{\"title\":\"Founder & CEO\",\"header_size\":\"p\",\"title_color\":\"#505050\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bed21f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"text_color\":\"#8B8B8B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"430da80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2760756\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2107, 310, '_wp_page_template', 'elementor_header_footer'),
(2108, 310, '_elementor_edit_mode', 'builder'),
(2109, 310, '_elementor_template_type', 'wp-page'),
(2110, 310, '_elementor_version', '3.16.4'),
(2111, 310, '_elementor_pro_version', '3.16.2'),
(2112, 310, '_elementor_data', '[{\"id\":\"a286b48\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1e548fb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"8f68f94\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/about.jpeg\",\"id\":300,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"2c74fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5bf99d7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cde5248\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad6828c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"47ca214\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0982b89\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"78e69af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9fc731\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1ee9a1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d75dd93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"69fd541\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Vision\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ad5e922\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"b7b882e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20d7ba1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"403a2db\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"09af20d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7950ca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"805d9be\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"66eb7d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1a1c8b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e4d0ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"bb90926\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9899187\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kumar.jpeg\",\"id\":306,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a6745f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"fd80b31\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kumar Varma\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"794cb40\",\"elType\":\"widget\",\"settings\":{\"title\":\"Founder & CEO\",\"header_size\":\"p\",\"title_color\":\"#505050\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bed21f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"text_color\":\"#8B8B8B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"430da80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2760756\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2115, 311, '_wp_page_template', 'elementor_header_footer'),
(2116, 311, '_elementor_edit_mode', 'builder'),
(2117, 311, '_elementor_template_type', 'wp-page'),
(2118, 311, '_elementor_version', '3.16.4'),
(2119, 311, '_elementor_pro_version', '3.16.2'),
(2120, 311, '_elementor_data', '[{\"id\":\"a286b48\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1e548fb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"8f68f94\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/about.jpeg\",\"id\":300,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"2c74fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5bf99d7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cde5248\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad6828c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"47ca214\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0982b89\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"78e69af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9fc731\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1ee9a1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d75dd93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"69fd541\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Vision\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ad5e922\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"b7b882e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20d7ba1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"403a2db\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"09af20d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7950ca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"805d9be\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"66eb7d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1a1c8b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e4d0ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"bb90926\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9899187\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kumar.jpeg\",\"id\":306,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a6745f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"fd80b31\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kumar Varma\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"794cb40\",\"elType\":\"widget\",\"settings\":{\"title\":\"Founder & CEO\",\"header_size\":\"p\",\"title_color\":\"#505050\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bed21f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"text_color\":\"#8B8B8B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"430da80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2760756\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2123, 312, '_wp_page_template', 'elementor_header_footer'),
(2124, 312, '_elementor_edit_mode', 'builder'),
(2125, 312, '_elementor_template_type', 'wp-page'),
(2126, 312, '_elementor_version', '3.16.4'),
(2127, 312, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2128, 312, '_elementor_data', '[{\"id\":\"a286b48\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1e548fb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"8f68f94\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/about.jpeg\",\"id\":300,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"2c74fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5bf99d7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cde5248\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad6828c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"47ca214\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0982b89\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"78e69af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9fc731\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1ee9a1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d75dd93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"69fd541\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Vision\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ad5e922\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"b7b882e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20d7ba1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"403a2db\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"09af20d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7950ca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"805d9be\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"66eb7d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1a1c8b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e4d0ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"bb90926\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9899187\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kumar.jpeg\",\"id\":306,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a6745f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"55\",\"isLinked\":false}},\"elements\":[{\"id\":\"fd80b31\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kumar Varma\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"794cb40\",\"elType\":\"widget\",\"settings\":{\"title\":\"Founder & CEO\",\"header_size\":\"p\",\"title_color\":\"#505050\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bed21f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"text_color\":\"#8B8B8B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"430da80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2760756\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2133, 313, '_wp_page_template', 'elementor_header_footer'),
(2134, 313, '_elementor_edit_mode', 'builder'),
(2135, 313, '_elementor_template_type', 'wp-page'),
(2136, 313, '_elementor_version', '3.16.4'),
(2137, 313, '_elementor_pro_version', '3.16.2'),
(2138, 313, '_elementor_data', '[{\"id\":\"a286b48\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1e548fb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"8f68f94\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/about.jpeg\",\"id\":300,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"2c74fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5bf99d7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cde5248\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad6828c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"47ca214\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0982b89\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"78e69af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9fc731\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1ee9a1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d75dd93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"69fd541\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Vision\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ad5e922\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"b7b882e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20d7ba1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"403a2db\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"09af20d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7950ca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"805d9be\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"66eb7d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1a1c8b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e4d0ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"bb90926\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9899187\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kumar.jpeg\",\"id\":306,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a6745f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"55\",\"isLinked\":false}},\"elements\":[{\"id\":\"fd80b31\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kumar Varma\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"794cb40\",\"elType\":\"widget\",\"settings\":{\"title\":\"Founder & CEO\",\"header_size\":\"p\",\"title_color\":\"#505050\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bed21f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"text_color\":\"#8B8B8B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"430da80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2760756\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2141, 314, '_wp_page_template', 'elementor_header_footer'),
(2142, 314, '_elementor_edit_mode', 'builder'),
(2143, 314, '_elementor_template_type', 'wp-page'),
(2144, 314, '_elementor_version', '3.16.4'),
(2145, 314, '_elementor_pro_version', '3.16.2'),
(2146, 314, '_elementor_data', '[{\"id\":\"a286b48\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1e548fb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"8f68f94\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/about.jpeg\",\"id\":300,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"2c74fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5bf99d7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cde5248\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad6828c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"47ca214\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0982b89\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"78e69af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9fc731\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1ee9a1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d75dd93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"69fd541\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Vision\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ad5e922\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"b7b882e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20d7ba1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"403a2db\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"09af20d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7950ca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"805d9be\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"66eb7d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1a1c8b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e4d0ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"bb90926\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9899187\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kumar.jpeg\",\"id\":306,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a6745f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"55\",\"isLinked\":false}},\"elements\":[{\"id\":\"fd80b31\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kumar Varma\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"794cb40\",\"elType\":\"widget\",\"settings\":{\"title\":\"Founder & CEO\",\"header_size\":\"p\",\"title_color\":\"#505050\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bed21f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"text_color\":\"#8B8B8B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"430da80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2760756\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2149, 315, '_wp_page_template', 'elementor_header_footer'),
(2150, 315, '_elementor_edit_mode', 'builder'),
(2151, 315, '_elementor_template_type', 'wp-page'),
(2152, 315, '_elementor_version', '3.16.4'),
(2153, 315, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2154, 315, '_elementor_data', '[{\"id\":\"a286b48\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1e548fb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"8f68f94\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/about.jpeg\",\"id\":301,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"2c74fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5bf99d7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cde5248\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad6828c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"47ca214\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0982b89\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"78e69af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9fc731\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1ee9a1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d75dd93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"69fd541\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Vision\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ad5e922\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"b7b882e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20d7ba1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"403a2db\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"09af20d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7950ca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"805d9be\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"66eb7d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1a1c8b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e4d0ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"bb90926\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9899187\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kumar.jpeg\",\"id\":306,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a6745f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"55\",\"isLinked\":false}},\"elements\":[{\"id\":\"fd80b31\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kumar Varma\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"794cb40\",\"elType\":\"widget\",\"settings\":{\"title\":\"Founder & CEO\",\"header_size\":\"p\",\"title_color\":\"#505050\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bed21f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"text_color\":\"#8B8B8B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"430da80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2760756\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2159, 56, '_elementor_edit_mode', 'builder'),
(2160, 56, '_elementor_template_type', 'wp-page'),
(2161, 56, '_elementor_version', '3.16.4'),
(2162, 56, '_elementor_pro_version', '3.16.2'),
(2171, 317, '_wp_page_template', 'elementor_header_footer'),
(2172, 317, '_elementor_edit_mode', 'builder'),
(2173, 317, '_elementor_template_type', 'wp-page'),
(2174, 317, '_elementor_version', '3.16.4'),
(2175, 317, '_elementor_pro_version', '3.16.2'),
(2176, 318, '_wp_page_template', 'elementor_header_footer'),
(2177, 318, '_elementor_edit_mode', 'builder'),
(2178, 318, '_elementor_template_type', 'wp-page'),
(2179, 318, '_elementor_version', '3.16.4'),
(2180, 318, '_elementor_pro_version', '3.16.2'),
(2181, 56, '_elementor_data', '[{\"id\":\"a34a8ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d0286c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"1557199\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bdaf07\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"14a5ad4\",\"elType\":\"widget\",\"settings\":{\"title\":\"CONTACT & ENQUIRIES\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Benne\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"078192a\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"placeholder\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"bc471fc\"},{\"custom_id\":\"field_528cc56\",\"placeholder\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"528cc56\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"placeholder\":\"Email\",\"width\":\"50\",\"_id\":\"7da8978\"},{\"custom_id\":\"field_0097c8a\",\"placeholder\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"0097c8a\"},{\"custom_id\":\"field_54460c0\",\"field_label\":\"How did you hear about us?\",\"placeholder\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"54460c0\"},{\"custom_id\":\"field_2b6910f\",\"field_type\":\"select\",\"field_label\":\"Reason for enquiry?\",\"placeholder\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"field_options\":\"Please select one from the dropdown\",\"_id\":\"2b6910f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"button_align\":\"center\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"irovz794gpdq@sg2plzcpnl491724.prod.sin2.secureserver.net\",\"email_subject\":\"New message from &quot;Beyond Color&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@av-advertising.com\",\"email_from_name\":\"Beyond Color\",\"email_to_2\":\"irovz794gpdq@sg2plzcpnl491724.prod.sin2.secureserver.net\",\"email_subject_2\":\"New message from &quot;Beyond Color&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@av-advertising.com\",\"email_from_name_2\":\"Beyond Color\",\"email_reply_to_2\":\"irovz794gpdq@sg2plzcpnl491724.prod.sin2.secureserver.net\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Poppins\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"html_typography_typography\":\"custom\",\"html_typography_font_family\":\"Poppins\",\"html_typography_font_weight\":\"400\",\"field_background_color\":\"#E7E7E7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Poppins\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"capitalize\",\"button_background_color\":\"#000000\",\"previous_button_background_color\":\"#000000\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c3aa13\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58123bb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2182, 319, '_wp_page_template', 'elementor_header_footer'),
(2183, 319, '_elementor_edit_mode', 'builder'),
(2184, 319, '_elementor_template_type', 'wp-page'),
(2185, 319, '_elementor_version', '3.16.4'),
(2186, 319, '_elementor_pro_version', '3.16.2'),
(2187, 319, '_elementor_data', '[{\"id\":\"a34a8ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d0286c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"1557199\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bdaf07\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"14a5ad4\",\"elType\":\"widget\",\"settings\":{\"title\":\"CONTACT & ENQUIRIES\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"078192a\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"placeholder\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"bc471fc\"},{\"custom_id\":\"field_528cc56\",\"placeholder\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"528cc56\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"placeholder\":\"Email\",\"width\":\"50\",\"_id\":\"7da8978\"},{\"custom_id\":\"field_0097c8a\",\"placeholder\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"0097c8a\"},{\"custom_id\":\"field_54460c0\",\"field_label\":\"How did you hear about us?\",\"placeholder\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"54460c0\"},{\"custom_id\":\"field_2b6910f\",\"field_type\":\"select\",\"field_label\":\"Reason for enquiry?\",\"placeholder\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"field_options\":\"Please select one from the dropdown\",\"_id\":\"2b6910f\"}],\"input_size\":\"md\",\"button_align\":\"center\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"irovz794gpdq@sg2plzcpnl491724.prod.sin2.secureserver.net\",\"email_subject\":\"New message from &quot;Beyond Color&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@av-advertising.com\",\"email_from_name\":\"Beyond Color\",\"email_to_2\":\"irovz794gpdq@sg2plzcpnl491724.prod.sin2.secureserver.net\",\"email_subject_2\":\"New message from &quot;Beyond Color&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@av-advertising.com\",\"email_from_name_2\":\"Beyond Color\",\"email_reply_to_2\":\"irovz794gpdq@sg2plzcpnl491724.prod.sin2.secureserver.net\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Poppins\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"html_typography_typography\":\"custom\",\"html_typography_font_family\":\"Poppins\",\"html_typography_font_weight\":\"400\",\"field_background_color\":\"#E7E7E7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Poppins\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"capitalize\",\"button_background_color\":\"#000000\",\"previous_button_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c3aa13\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58123bb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2190, 320, '_wp_page_template', 'elementor_header_footer'),
(2191, 320, '_elementor_edit_mode', 'builder'),
(2192, 320, '_elementor_template_type', 'wp-page'),
(2193, 320, '_elementor_version', '3.16.4'),
(2194, 320, '_elementor_pro_version', '3.16.2'),
(2195, 320, '_elementor_data', '[{\"id\":\"a34a8ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d0286c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"1557199\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bdaf07\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"14a5ad4\",\"elType\":\"widget\",\"settings\":{\"title\":\"CONTACT & ENQUIRIES\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"078192a\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"placeholder\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"bc471fc\"},{\"custom_id\":\"field_528cc56\",\"placeholder\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"528cc56\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"placeholder\":\"Email\",\"width\":\"50\",\"_id\":\"7da8978\"},{\"custom_id\":\"field_0097c8a\",\"placeholder\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"0097c8a\"},{\"custom_id\":\"field_54460c0\",\"field_label\":\"How did you hear about us?\",\"placeholder\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"54460c0\"},{\"custom_id\":\"field_2b6910f\",\"field_type\":\"select\",\"field_label\":\"Reason for enquiry?\",\"placeholder\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"field_options\":\"Please select one from the dropdown\",\"_id\":\"2b6910f\"}],\"input_size\":\"md\",\"button_align\":\"center\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"irovz794gpdq@sg2plzcpnl491724.prod.sin2.secureserver.net\",\"email_subject\":\"New message from &quot;Beyond Color&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@av-advertising.com\",\"email_from_name\":\"Beyond Color\",\"email_to_2\":\"irovz794gpdq@sg2plzcpnl491724.prod.sin2.secureserver.net\",\"email_subject_2\":\"New message from &quot;Beyond Color&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@av-advertising.com\",\"email_from_name_2\":\"Beyond Color\",\"email_reply_to_2\":\"irovz794gpdq@sg2plzcpnl491724.prod.sin2.secureserver.net\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Poppins\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"html_typography_typography\":\"custom\",\"html_typography_font_family\":\"Poppins\",\"html_typography_font_weight\":\"400\",\"field_background_color\":\"#E7E7E7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Poppins\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"capitalize\",\"button_background_color\":\"#000000\",\"previous_button_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c3aa13\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58123bb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2197, 321, '_wp_page_template', 'elementor_header_footer'),
(2198, 321, '_elementor_edit_mode', 'builder'),
(2199, 321, '_elementor_template_type', 'wp-page'),
(2200, 321, '_elementor_version', '3.16.4'),
(2201, 321, '_elementor_pro_version', '3.16.2'),
(2202, 321, '_elementor_data', '[{\"id\":\"a34a8ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d0286c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"1557199\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bdaf07\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"14a5ad4\",\"elType\":\"widget\",\"settings\":{\"title\":\"CONTACT & ENQUIRIES\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"078192a\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"placeholder\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"bc471fc\"},{\"custom_id\":\"field_528cc56\",\"placeholder\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"528cc56\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"placeholder\":\"Email\",\"width\":\"50\",\"_id\":\"7da8978\"},{\"custom_id\":\"field_0097c8a\",\"placeholder\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"0097c8a\"},{\"custom_id\":\"field_54460c0\",\"field_label\":\"How did you hear about us?\",\"placeholder\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"54460c0\"},{\"custom_id\":\"field_2b6910f\",\"field_type\":\"select\",\"field_label\":\"Reason for enquiry?\",\"placeholder\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"field_options\":\"Please select one from the dropdown\",\"_id\":\"2b6910f\"}],\"input_size\":\"md\",\"button_align\":\"center\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"irovz794gpdq@sg2plzcpnl491724.prod.sin2.secureserver.net\",\"email_subject\":\"New message from &quot;Beyond Color&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@av-advertising.com\",\"email_from_name\":\"Beyond Color\",\"email_to_2\":\"irovz794gpdq@sg2plzcpnl491724.prod.sin2.secureserver.net\",\"email_subject_2\":\"New message from &quot;Beyond Color&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@av-advertising.com\",\"email_from_name_2\":\"Beyond Color\",\"email_reply_to_2\":\"irovz794gpdq@sg2plzcpnl491724.prod.sin2.secureserver.net\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Poppins\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"html_typography_typography\":\"custom\",\"html_typography_font_family\":\"Poppins\",\"html_typography_font_weight\":\"400\",\"field_background_color\":\"#E7E7E7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Poppins\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"capitalize\",\"button_background_color\":\"#000000\",\"previous_button_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c3aa13\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58123bb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2204, 322, '_wp_page_template', 'elementor_header_footer'),
(2205, 322, '_elementor_edit_mode', 'builder'),
(2206, 322, '_elementor_template_type', 'wp-page'),
(2207, 322, '_elementor_version', '3.16.4'),
(2208, 322, '_elementor_pro_version', '3.16.2'),
(2209, 322, '_elementor_data', '[{\"id\":\"a34a8ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d0286c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"1557199\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bdaf07\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"14a5ad4\",\"elType\":\"widget\",\"settings\":{\"title\":\"CONTACT & ENQUIRIES\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"078192a\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"placeholder\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"bc471fc\"},{\"custom_id\":\"field_528cc56\",\"placeholder\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"528cc56\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"placeholder\":\"Email\",\"width\":\"50\",\"_id\":\"7da8978\"},{\"custom_id\":\"field_0097c8a\",\"placeholder\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"0097c8a\"},{\"custom_id\":\"field_54460c0\",\"field_label\":\"How did you hear about us?\",\"placeholder\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"54460c0\"},{\"custom_id\":\"field_2b6910f\",\"field_type\":\"select\",\"field_label\":\"Reason for enquiry?\",\"placeholder\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"field_options\":\"Please select one from the dropdown\",\"_id\":\"2b6910f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"button_align\":\"center\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"irovz794gpdq@sg2plzcpnl491724.prod.sin2.secureserver.net\",\"email_subject\":\"New message from &quot;Beyond Color&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@av-advertising.com\",\"email_from_name\":\"Beyond Color\",\"email_to_2\":\"irovz794gpdq@sg2plzcpnl491724.prod.sin2.secureserver.net\",\"email_subject_2\":\"New message from &quot;Beyond Color&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@av-advertising.com\",\"email_from_name_2\":\"Beyond Color\",\"email_reply_to_2\":\"irovz794gpdq@sg2plzcpnl491724.prod.sin2.secureserver.net\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Poppins\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"html_typography_typography\":\"custom\",\"html_typography_font_family\":\"Poppins\",\"html_typography_font_weight\":\"400\",\"field_background_color\":\"#E7E7E7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Poppins\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"capitalize\",\"button_background_color\":\"#000000\",\"previous_button_background_color\":\"#000000\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c3aa13\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58123bb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2215, 326, '_elementor_edit_mode', 'builder'),
(2216, 326, '_elementor_template_type', 'section'),
(2217, 326, '_elementor_version', '3.16.4'),
(2218, 326, '_wp_page_template', 'default'),
(2219, 326, '_elementor_data', '[{\"id\":\"ada03dd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4000382\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\"},\"elements\":[{\"id\":\"f97e67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/beyond-color-black.png\",\"id\":69,\"size\":\"\",\"alt\":\"Beyond Color\",\"source\":\"library\"},\"link_to\":\"custom\",\"link\":{\"url\":\"\\/Home\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":19.959},\"_flex_align_self\":\"center\",\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"11551c5\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"300\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#000000\",\"color_menu_item_hover\":\"#000000\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":true}],\"isInner\":false}]'),
(2221, 326, '_elementor_pro_version', '3.16.2'),
(2225, 327, '_elementor_edit_mode', 'builder'),
(2226, 327, '_elementor_template_type', 'wp-page'),
(2227, 327, '_elementor_version', '3.16.4'),
(2228, 327, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2229, 327, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2231, 327, '_elementor_pro_version', '3.16.2'),
(2233, 328, '_elementor_edit_mode', 'builder'),
(2234, 328, '_elementor_template_type', 'wp-page'),
(2235, 328, '_elementor_version', '3.16.4'),
(2236, 328, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2237, 328, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2239, 328, '_elementor_pro_version', '3.16.2'),
(2241, 329, '_elementor_edit_mode', 'builder'),
(2242, 329, '_elementor_template_type', 'wp-page'),
(2243, 329, '_elementor_version', '3.16.4'),
(2244, 329, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2245, 329, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2247, 329, '_elementor_pro_version', '3.16.2'),
(2250, 330, '_elementor_edit_mode', 'builder'),
(2251, 330, '_elementor_template_type', 'wp-page'),
(2252, 330, '_elementor_version', '3.16.4'),
(2253, 330, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2254, 330, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2256, 330, '_elementor_pro_version', '3.16.2'),
(2257, 331, '_elementor_edit_mode', 'builder'),
(2258, 331, '_elementor_template_type', 'wp-page'),
(2259, 331, '_elementor_version', '3.16.4'),
(2260, 331, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2261, 331, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2263, 331, '_elementor_pro_version', '3.16.2'),
(2264, 332, '_elementor_edit_mode', 'builder'),
(2265, 332, '_elementor_template_type', 'wp-page'),
(2266, 332, '_elementor_version', '3.16.4'),
(2267, 332, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2268, 332, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2270, 332, '_elementor_pro_version', '3.16.2'),
(2273, 333, '_elementor_edit_mode', 'builder'),
(2274, 333, '_elementor_template_type', 'wp-page'),
(2275, 333, '_elementor_version', '3.16.4'),
(2276, 333, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2277, 333, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2279, 333, '_elementor_pro_version', '3.16.2'),
(2281, 334, '_elementor_edit_mode', 'builder'),
(2282, 334, '_elementor_template_type', 'wp-page'),
(2283, 334, '_elementor_version', '3.16.4'),
(2284, 334, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2285, 334, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2287, 334, '_elementor_pro_version', '3.16.2'),
(2289, 335, '_elementor_edit_mode', 'builder'),
(2290, 335, '_elementor_template_type', 'wp-page'),
(2291, 335, '_elementor_version', '3.16.4'),
(2292, 335, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2293, 335, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"home-slicer\"},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2295, 335, '_elementor_pro_version', '3.16.2'),
(2299, 337, '_elementor_edit_mode', 'builder'),
(2300, 337, '_elementor_template_type', 'wp-page'),
(2301, 337, '_elementor_version', '3.16.4'),
(2302, 337, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2303, 337, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"home-slicer\"},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2305, 337, '_elementor_pro_version', '3.16.2'),
(2306, 338, '_elementor_edit_mode', 'builder'),
(2307, 338, '_elementor_template_type', 'wp-page'),
(2308, 338, '_elementor_version', '3.16.4'),
(2309, 338, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2310, 338, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"home-slicer\"},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2312, 338, '_elementor_pro_version', '3.16.2'),
(2313, 339, '_elementor_edit_mode', 'builder'),
(2314, 339, '_elementor_template_type', 'wp-page'),
(2315, 339, '_elementor_version', '3.16.4'),
(2316, 339, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2317, 339, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"home-slider\"},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2319, 339, '_elementor_pro_version', '3.16.2'),
(2324, 341, '_elementor_edit_mode', 'builder'),
(2325, 341, '_elementor_template_type', 'section'),
(2326, 341, '_elementor_version', '3.16.4'),
(2327, 341, '_wp_page_template', 'default'),
(2328, 341, '_elementor_data', '[{\"id\":\"ada03dd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4000382\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\"},\"elements\":[{\"id\":\"f97e67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/beyond-color-black.png\",\"id\":69,\"size\":\"\",\"alt\":\"Beyond Color\",\"source\":\"library\"},\"link_to\":\"custom\",\"link\":{\"url\":\"\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":19.959},\"_flex_align_self\":\"center\",\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"11551c5\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"300\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#000000\",\"color_menu_item_hover\":\"#000000\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":true}],\"isInner\":false}]'),
(2330, 341, '_elementor_pro_version', '3.16.2'),
(2334, 342, '_elementor_edit_mode', 'builder'),
(2335, 342, '_elementor_template_type', 'section'),
(2336, 342, '_elementor_version', '3.16.4'),
(2337, 342, '_wp_page_template', 'default'),
(2338, 342, '_elementor_data', '[{\"id\":\"ada03dd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4000382\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\"},\"elements\":[{\"id\":\"f97e67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/beyond-color-black.png\",\"id\":69,\"size\":\"\",\"alt\":\"Beyond Color\",\"source\":\"library\"},\"link_to\":\"custom\",\"link\":{\"url\":\"\\/beyondc\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":19.959},\"_flex_align_self\":\"center\",\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"11551c5\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"300\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#000000\",\"color_menu_item_hover\":\"#000000\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":true}],\"isInner\":false}]'),
(2340, 342, '_elementor_pro_version', '3.16.2'),
(2342, 25, '_elementor_controls_usage', 'a:3:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:16:\"_flex_align_self\";i:1;s:10:\"_flex_size\";i:1;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:9:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:30:\"menu_typography_text_transform\";i:1;s:15:\"color_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:29:\"pointer_color_menu_item_hover\";i:1;s:22:\"color_menu_item_active\";i:1;s:13:\"pointer_width\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:3:{s:13:\"content_width\";i:2;s:14:\"flex_direction\";i:2;s:20:\"flex_justify_content\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;}}}}}'),
(2344, 344, '_elementor_edit_mode', 'builder'),
(2345, 344, '_elementor_template_type', 'wp-page'),
(2346, 344, '_elementor_version', '3.16.4'),
(2347, 344, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2348, 344, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"home-slider\"},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2350, 344, '_elementor_pro_version', '3.16.2'),
(2352, 345, '_elementor_edit_mode', 'builder'),
(2353, 345, '_elementor_template_type', 'wp-page'),
(2354, 345, '_elementor_version', '3.16.4'),
(2355, 345, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2356, 345, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"home-slider\"},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba6c198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b6837cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"2f92a17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Material\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_order\":\"start\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":51.374,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":43.306,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2358, 345, '_elementor_pro_version', '3.16.2'),
(2360, 346, '_elementor_edit_mode', 'builder'),
(2361, 346, '_elementor_template_type', 'wp-page'),
(2362, 346, '_elementor_version', '3.16.4'),
(2363, 346, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2364, 346, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"home-slider\"},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":22.197,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":39.998,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br \\/><strong>Eco-friendly materials:<\\/strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.<\\/p><p><strong> Empowering artisans:<\\/strong> We\\u2019re more than just a luxury brand; we\\u2019re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2366, 346, '_elementor_pro_version', '3.16.2'),
(2369, 347, '_wp_page_template', 'elementor_header_footer'),
(2370, 347, '_elementor_edit_mode', 'builder'),
(2371, 347, '_elementor_template_type', 'wp-page'),
(2372, 347, '_elementor_version', '3.16.4'),
(2373, 347, '_elementor_pro_version', '3.16.2'),
(2374, 347, '_elementor_data', '[{\"id\":\"a286b48\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1e548fb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"8f68f94\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/about.jpeg\",\"id\":301,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"2c74fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5bf99d7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cde5248\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad6828c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"47ca214\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0982b89\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"78e69af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9fc731\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1ee9a1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d75dd93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"69fd541\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Vision\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ad5e922\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"b7b882e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20d7ba1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"403a2db\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"09af20d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7950ca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"805d9be\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"66eb7d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1a1c8b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e4d0ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"bb90926\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9899187\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kumar.jpeg\",\"id\":306,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a6745f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"55\",\"isLinked\":false}},\"elements\":[{\"id\":\"fd80b31\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kumar Varma\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"794cb40\",\"elType\":\"widget\",\"settings\":{\"title\":\"Founder & CEO\",\"header_size\":\"p\",\"title_color\":\"#505050\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bed21f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"text_color\":\"#8B8B8B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"430da80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2760756\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2377, 348, '_wp_page_template', 'elementor_header_footer'),
(2378, 348, '_elementor_edit_mode', 'builder'),
(2379, 348, '_elementor_template_type', 'wp-page'),
(2380, 348, '_elementor_version', '3.16.4'),
(2381, 348, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2382, 348, '_elementor_data', '[{\"id\":\"a286b48\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1e548fb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"8f68f94\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/about.jpeg\",\"id\":301,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"2c74fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5bf99d7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cde5248\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad6828c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"47ca214\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0982b89\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"78e69af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9fc731\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1ee9a1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d75dd93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"69fd541\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Vision\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ad5e922\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"b7b882e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20d7ba1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"403a2db\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"09af20d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7950ca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"805d9be\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"66eb7d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1a1c8b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e4d0ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"bb90926\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9899187\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kumar.jpeg\",\"id\":306,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a6745f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"55\",\"isLinked\":false}},\"elements\":[{\"id\":\"fd80b31\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kumar Varma\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"794cb40\",\"elType\":\"widget\",\"settings\":{\"title\":\"Founder & CEO\",\"header_size\":\"p\",\"title_color\":\"#505050\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bed21f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"text_color\":\"#8B8B8B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"430da80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2760756\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2385, 349, '_wp_page_template', 'elementor_header_footer'),
(2386, 349, '_elementor_edit_mode', 'builder'),
(2387, 349, '_elementor_template_type', 'wp-page'),
(2388, 349, '_elementor_version', '3.16.4'),
(2389, 349, '_elementor_pro_version', '3.16.2'),
(2390, 349, '_elementor_data', '[{\"id\":\"a286b48\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1e548fb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"8f68f94\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/about.jpeg\",\"id\":301,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"2c74fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5bf99d7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cde5248\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad6828c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"47ca214\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0982b89\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"78e69af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9fc731\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1ee9a1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d75dd93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"69fd541\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Vision\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ad5e922\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"b7b882e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20d7ba1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"403a2db\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"09af20d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7950ca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"805d9be\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"66eb7d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br \\/>We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.<\\/p><p>We exist to redefine luxury with a conscience.<\\/p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don\\u2019t just tell stories; they create legacies.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1a1c8b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e4d0ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"bb90926\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9899187\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kumar.jpeg\",\"id\":306,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a6745f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"55\",\"isLinked\":false}},\"elements\":[{\"id\":\"fd80b31\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kumar Varma\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"794cb40\",\"elType\":\"widget\",\"settings\":{\"title\":\"Founder & CEO\",\"header_size\":\"p\",\"title_color\":\"#505050\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bed21f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar\\u2019s journey is one of unwavering passion and dedication.<\\/p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he\\u2019s a visionary who believes in the extraordinary.<\\/p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#8B8B8B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"430da80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2760756\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2394, 350, '_wp_attached_file', '2023/10/living-room.jpeg'),
(2395, 350, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:330;s:6:\"height\";i:329;s:4:\"file\";s:24:\"2023/10/living-room.jpeg\";s:8:\"filesize\";i:182976;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"living-room-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27363;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"living-room-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7337;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2396, 351, '_wp_attached_file', '2023/10/bathrooms.jpeg'),
(2397, 351, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:330;s:6:\"height\";i:329;s:4:\"file\";s:22:\"2023/10/bathrooms.jpeg\";s:8:\"filesize\";i:77161;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"bathrooms-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14344;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"bathrooms-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4687;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2398, 352, '_wp_attached_file', '2023/10/kithchens.jpeg'),
(2399, 352, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:329;s:6:\"height\";i:329;s:4:\"file\";s:22:\"2023/10/kithchens.jpeg\";s:8:\"filesize\";i:98742;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"kithchens-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15810;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"kithchens-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5455;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2408, 354, '_wp_attached_file', '2023/10/by-style-home.jpeg'),
(2409, 354, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:329;s:6:\"height\";i:329;s:4:\"file\";s:26:\"2023/10/by-style-home.jpeg\";s:8:\"filesize\";i:135952;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"by-style-home-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20126;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"by-style-home-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6309;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2410, 355, '_wp_attached_file', '2023/10/showroom.jpeg'),
(2411, 355, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:451;s:6:\"height\";i:447;s:4:\"file\";s:21:\"2023/10/showroom.jpeg\";s:8:\"filesize\";i:212117;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"showroom-300x297.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:297;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18652;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"showroom-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6138;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2414, 357, '_wp_attached_file', '2023/10/instagram.jpeg'),
(2415, 357, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:445;s:6:\"height\";i:445;s:4:\"file\";s:22:\"2023/10/instagram.jpeg\";s:8:\"filesize\";i:245275;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"instagram-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23868;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"instagram-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7935;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2416, 358, '_elementor_edit_mode', 'builder'),
(2417, 358, '_elementor_template_type', 'wp-page'),
(2418, 358, '_elementor_version', '3.16.4'),
(2419, 358, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2420, 358, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"home-slider\"},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":22.197,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":39.998,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br \\/><strong>Eco-friendly materials:<\\/strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.<\\/p><p><strong> Empowering artisans:<\\/strong> We\\u2019re more than just a luxury brand; we\\u2019re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2422, 358, '_elementor_pro_version', '3.16.2'),
(2423, 359, '_elementor_edit_mode', 'builder'),
(2424, 359, '_elementor_template_type', 'wp-page'),
(2425, 359, '_elementor_version', '3.16.4'),
(2426, 359, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2427, 359, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"home-slider\"},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":22.197,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":39.998,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/Instagrid-1.jpg\",\"id\":148,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br \\/><strong>Eco-friendly materials:<\\/strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.<\\/p><p><strong> Empowering artisans:<\\/strong> We\\u2019re more than just a luxury brand; we\\u2019re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2429, 359, '_elementor_pro_version', '3.16.2'),
(2430, 360, '_elementor_edit_mode', 'builder'),
(2431, 360, '_elementor_template_type', 'wp-page'),
(2432, 360, '_elementor_version', '3.16.4'),
(2433, 360, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2434, 360, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"home-slider\"},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kithchens.jpeg\",\"id\":352,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/bathrooms.jpeg\",\"id\":351,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24.871,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.373,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/living-room.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/by-style-home.jpeg\",\"id\":354,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/showroom.jpeg\",\"id\":355,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":22.197,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":39.998,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram.jpeg\",\"id\":357,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br \\/><strong>Eco-friendly materials:<\\/strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.<\\/p><p><strong> Empowering artisans:<\\/strong> We\\u2019re more than just a luxury brand; we\\u2019re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2436, 360, '_elementor_pro_version', '3.16.2'),
(2438, 361, '_elementor_edit_mode', 'builder'),
(2439, 361, '_elementor_template_type', 'wp-page'),
(2440, 361, '_elementor_version', '3.16.4'),
(2441, 361, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2442, 361, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"home-slider\"},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kithchens.jpeg\",\"id\":352,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/bathrooms.jpeg\",\"id\":351,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24.871,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.373,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/living-room.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/by-style-home.jpeg\",\"id\":354,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/showroom.jpeg\",\"id\":355,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":22.197,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":39.998,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram.jpeg\",\"id\":357,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br \\/><strong>Eco-friendly materials:<\\/strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.<\\/p><p><strong> Empowering artisans:<\\/strong> We\\u2019re more than just a luxury brand; we\\u2019re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2444, 361, '_elementor_pro_version', '3.16.2'),
(2445, 362, '_elementor_edit_mode', 'builder'),
(2446, 362, '_elementor_template_type', 'wp-page'),
(2447, 362, '_elementor_version', '3.16.4'),
(2448, 362, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2449, 362, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"home-slider\"},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kithchens.jpeg\",\"id\":352,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/bathrooms.jpeg\",\"id\":351,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24.871,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.373,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/living-room.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/by-style-home.jpeg\",\"id\":354,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/showroom.jpeg\",\"id\":355,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":22.197,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":39.998,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram.jpeg\",\"id\":357,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":30,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br \\/><strong>Eco-friendly materials:<\\/strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.<\\/p><p><strong> Empowering artisans:<\\/strong> We\\u2019re more than just a luxury brand; we\\u2019re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2451, 362, '_elementor_pro_version', '3.16.2'),
(2452, 363, '_elementor_edit_mode', 'builder'),
(2453, 363, '_elementor_template_type', 'wp-page'),
(2454, 363, '_elementor_version', '3.16.4'),
(2455, 363, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2456, 363, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"home-slider\"},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kithchens.jpeg\",\"id\":352,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/bathrooms.jpeg\",\"id\":351,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24.871,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.373,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/living-room.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/by-style-home.jpeg\",\"id\":354,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/showroom.jpeg\",\"id\":355,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":22.472,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.666,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram.jpeg\",\"id\":357,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":29.999,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.943,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br \\/><strong>Eco-friendly materials:<\\/strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.<\\/p><p><strong> Empowering artisans:<\\/strong> We\\u2019re more than just a luxury brand; we\\u2019re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2458, 363, '_elementor_pro_version', '3.16.2'),
(2461, 364, '_wp_attached_file', '2023/10/material3.jpeg'),
(2462, 364, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:441;s:6:\"height\";i:441;s:4:\"file\";s:22:\"2023/10/material3.jpeg\";s:8:\"filesize\";i:280042;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"material3-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25663;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"material3-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7715;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2463, 365, '_wp_attached_file', '2023/10/material2.jpeg'),
(2464, 365, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:442;s:6:\"height\";i:441;s:4:\"file\";s:22:\"2023/10/material2.jpeg\";s:8:\"filesize\";i:170535;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"material2-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14442;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"material2-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4345;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2465, 366, '_elementor_edit_mode', 'builder'),
(2466, 366, '_elementor_template_type', 'wp-page'),
(2467, 366, '_elementor_version', '3.16.4'),
(2468, 366, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2469, 366, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"home-slider\"},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kithchens.jpeg\",\"id\":352,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/bathrooms.jpeg\",\"id\":351,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24.871,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.373,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/living-room.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/by-style-home.jpeg\",\"id\":354,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/showroom.jpeg\",\"id\":355,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":22.472,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.666,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram.jpeg\",\"id\":357,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":29.999,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.943,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br \\/><strong>Eco-friendly materials:<\\/strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.<\\/p><p><strong> Empowering artisans:<\\/strong> We\\u2019re more than just a luxury brand; we\\u2019re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2471, 366, '_elementor_pro_version', '3.16.2'),
(2473, 367, '_elementor_edit_mode', 'builder'),
(2474, 367, '_elementor_template_type', 'wp-page'),
(2475, 367, '_elementor_version', '3.16.4'),
(2476, 367, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2477, 367, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"home-slider\"},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kithchens.jpeg\",\"id\":352,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/bathrooms.jpeg\",\"id\":351,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24.871,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.373,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/living-room.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/by-style-home.jpeg\",\"id\":354,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/showroom.jpeg\",\"id\":355,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":22.472,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.666,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram.jpeg\",\"id\":357,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":29.999,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.943,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br \\/><strong>Eco-friendly materials:<\\/strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.<\\/p><p><strong> Empowering artisans:<\\/strong> We\\u2019re more than just a luxury brand; we\\u2019re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2479, 367, '_elementor_pro_version', '3.16.2'),
(2481, 368, '_elementor_edit_mode', 'builder'),
(2482, 368, '_elementor_template_type', 'wp-page'),
(2483, 368, '_elementor_version', '3.16.4'),
(2484, 368, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2485, 368, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"home-slider\"},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material2.jpeg\",\"id\":365,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material3.jpeg\",\"id\":364,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kithchens.jpeg\",\"id\":352,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/bathrooms.jpeg\",\"id\":351,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24.871,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.373,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/living-room.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/by-style-home.jpeg\",\"id\":354,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/showroom.jpeg\",\"id\":355,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":22.472,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.666,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram.jpeg\",\"id\":357,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":29.999,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.943,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br \\/><strong>Eco-friendly materials:<\\/strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.<\\/p><p><strong> Empowering artisans:<\\/strong> We\\u2019re more than just a luxury brand; we\\u2019re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2487, 368, '_elementor_pro_version', '3.16.2'),
(2490, 369, '_elementor_edit_mode', 'builder'),
(2491, 369, '_elementor_template_type', 'wp-page'),
(2492, 369, '_elementor_version', '3.16.4'),
(2493, 369, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2494, 369, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"home-slider\"},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material2.jpeg\",\"id\":365,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material3.jpeg\",\"id\":364,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kithchens.jpeg\",\"id\":352,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/bathrooms.jpeg\",\"id\":351,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24.871,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.373,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/living-room.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/by-style-home.jpeg\",\"id\":354,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/showroom.jpeg\",\"id\":355,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":22.472,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.666,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram.jpeg\",\"id\":357,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":29.999,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.943,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br \\/><strong>Eco-friendly materials:<\\/strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.<\\/p><p><strong> Empowering artisans:<\\/strong> We\\u2019re more than just a luxury brand; we\\u2019re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2496, 369, '_elementor_pro_version', '3.16.2'),
(2497, 370, '_elementor_edit_mode', 'builder'),
(2498, 370, '_elementor_template_type', 'wp-page'),
(2499, 370, '_elementor_version', '3.16.4'),
(2500, 370, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2501, 370, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"home-slider\"},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material2.jpeg\",\"id\":365,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material3.jpeg\",\"id\":364,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kithchens.jpeg\",\"id\":352,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/bathrooms.jpeg\",\"id\":351,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24.871,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.373,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/living-room.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/by-style-home.jpeg\",\"id\":354,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/showroom.jpeg\",\"id\":355,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":22.472,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.666,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram.jpeg\",\"id\":357,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":29.999,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.943,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br \\/><strong>Eco-friendly materials:<\\/strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.<\\/p><p><strong> Empowering artisans:<\\/strong> We\\u2019re more than just a luxury brand; we\\u2019re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2503, 370, '_elementor_pro_version', '3.16.2'),
(2504, 371, '_elementor_edit_mode', 'builder'),
(2505, 371, '_elementor_template_type', 'wp-page'),
(2506, 371, '_elementor_version', '3.16.4'),
(2507, 371, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2508, 371, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"home-slider\"},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material2.jpeg\",\"id\":365,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material3.jpeg\",\"id\":364,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kithchens.jpeg\",\"id\":352,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/bathrooms.jpeg\",\"id\":351,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24.871,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.373,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/living-room.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/by-style-home.jpeg\",\"id\":354,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/showroom.jpeg\",\"id\":355,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":22.472,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.666,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram.jpeg\",\"id\":357,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":29.999,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.943,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br \\/><strong>Eco-friendly materials:<\\/strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.<\\/p><p><strong> Empowering artisans:<\\/strong> We\\u2019re more than just a luxury brand; we\\u2019re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2510, 371, '_elementor_pro_version', '3.16.2'),
(2513, 372, '_elementor_edit_mode', 'builder'),
(2514, 372, '_elementor_template_type', 'wp-page'),
(2515, 372, '_elementor_version', '3.16.4'),
(2516, 372, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2517, 372, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"home-slider\"},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material2.jpeg\",\"id\":365,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material3.jpeg\",\"id\":364,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kithchens.jpeg\",\"id\":352,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/bathrooms.jpeg\",\"id\":351,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24.871,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.373,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/living-room.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/by-style-home.jpeg\",\"id\":354,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/showroom.jpeg\",\"id\":355,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":22.472,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.666,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram.jpeg\",\"id\":357,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":29.999,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.943,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br \\/><strong>Eco-friendly materials:<\\/strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.<\\/p><p><strong> Empowering artisans:<\\/strong> We\\u2019re more than just a luxury brand; we\\u2019re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2519, 372, '_elementor_pro_version', '3.16.2'),
(2521, 373, '_elementor_edit_mode', 'builder'),
(2522, 373, '_elementor_template_type', 'wp-page'),
(2523, 373, '_elementor_version', '3.16.4'),
(2524, 373, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2525, 373, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"home-slider\"},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material2.jpeg\",\"id\":365,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material3.jpeg\",\"id\":364,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kithchens.jpeg\",\"id\":352,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/bathrooms.jpeg\",\"id\":351,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24.871,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.373,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/living-room.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/by-style-home.jpeg\",\"id\":354,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/showroom.jpeg\",\"id\":355,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":22.472,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.666,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram.jpeg\",\"id\":357,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":29.999,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.943,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br \\/><strong>Eco-friendly materials:<\\/strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.<\\/p><p><strong> Empowering artisans:<\\/strong> We\\u2019re more than just a luxury brand; we\\u2019re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2527, 373, '_elementor_pro_version', '3.16.2'),
(2529, 374, '_elementor_edit_mode', 'builder'),
(2530, 374, '_elementor_template_type', 'wp-page'),
(2531, 374, '_elementor_version', '3.16.4'),
(2532, 374, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2533, 374, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"home-slider\"},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material2.jpeg\",\"id\":365,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material3.jpeg\",\"id\":364,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kithchens.jpeg\",\"id\":352,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/bathrooms.jpeg\",\"id\":351,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24.871,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.373,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/living-room.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/by-style-home.jpeg\",\"id\":354,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/showroom.jpeg\",\"id\":355,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":22.472,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.666,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram.jpeg\",\"id\":357,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":29.999,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.943,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br \\/><strong>Eco-friendly materials:<\\/strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.<\\/p><p><strong> Empowering artisans:<\\/strong> We\\u2019re more than just a luxury brand; we\\u2019re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2535, 374, '_elementor_pro_version', '3.16.2'),
(2539, 375, '_elementor_edit_mode', 'builder'),
(2540, 375, '_elementor_template_type', 'wp-page'),
(2541, 375, '_elementor_version', '3.16.4'),
(2542, 375, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2543, 375, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"home-slider\"},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material2.jpeg\",\"id\":365,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material3.jpeg\",\"id\":364,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kithchens.jpeg\",\"id\":352,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/bathrooms.jpeg\",\"id\":351,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24.871,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.373,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/living-room.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/by-style-home.jpeg\",\"id\":354,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/showroom.jpeg\",\"id\":355,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":22.472,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.666,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram.jpeg\",\"id\":357,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":29.999,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.943,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br \\/><strong>Eco-friendly materials:<\\/strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.<\\/p><p><strong> Empowering artisans:<\\/strong> We\\u2019re more than just a luxury brand; we\\u2019re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2545, 375, '_elementor_pro_version', '3.16.2'),
(2547, 376, '_elementor_edit_mode', 'builder'),
(2548, 376, '_elementor_template_type', 'wp-page'),
(2549, 376, '_elementor_version', '3.16.4'),
(2550, 376, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2551, 376, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"home-slider\"},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material2.jpeg\",\"id\":365,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material3.jpeg\",\"id\":364,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kithchens.jpeg\",\"id\":352,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/bathrooms.jpeg\",\"id\":351,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24.871,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.373,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/living-room.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/by-style-home.jpeg\",\"id\":354,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/showroom.jpeg\",\"id\":355,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":22.472,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.666,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram.jpeg\",\"id\":357,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":29.999,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.943,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br \\/><strong>Eco-friendly materials:<\\/strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.<\\/p><p><strong> Empowering artisans:<\\/strong> We\\u2019re more than just a luxury brand; we\\u2019re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2553, 376, '_elementor_pro_version', '3.16.2'),
(2555, 377, '_elementor_edit_mode', 'builder'),
(2556, 377, '_elementor_template_type', 'wp-page'),
(2557, 377, '_elementor_version', '3.16.4'),
(2558, 377, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2559, 377, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"home-slider\"},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material2.jpeg\",\"id\":365,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material3.jpeg\",\"id\":364,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kithchens.jpeg\",\"id\":352,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/bathrooms.jpeg\",\"id\":351,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24.871,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.373,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/living-room.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/by-style-home.jpeg\",\"id\":354,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/showroom.jpeg\",\"id\":355,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":22.472,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.666,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram.jpeg\",\"id\":357,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":29.999,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.943,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br \\/><strong>Eco-friendly materials:<\\/strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.<\\/p><p><strong> Empowering artisans:<\\/strong> We\\u2019re more than just a luxury brand; we\\u2019re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2561, 377, '_elementor_pro_version', '3.16.2'),
(2565, 378, '_wp_page_template', 'elementor_header_footer'),
(2566, 378, '_elementor_edit_mode', 'builder'),
(2567, 378, '_elementor_template_type', 'wp-page'),
(2568, 378, '_elementor_version', '3.16.4'),
(2569, 378, '_elementor_pro_version', '3.16.2'),
(2571, 379, '_wp_page_template', 'elementor_header_footer'),
(2572, 379, '_elementor_edit_mode', 'builder'),
(2573, 379, '_elementor_template_type', 'wp-page'),
(2574, 379, '_elementor_version', '3.16.4'),
(2575, 379, '_elementor_pro_version', '3.16.2'),
(2577, 50, '_elementor_data', '[{\"id\":\"0672303\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"05de692\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"d6df4e8\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"48649ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"a327b64\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6e32bb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"3ffd7e5\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfe735b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db6cbb\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21d7db4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material.jpeg\",\"id\":390,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34c4677\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"8ab1e22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a74e214\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"412cd2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\",\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5138424\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"eb18508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa555dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3625f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e9c17da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bd8f41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8a0faba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1296abd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a57a2b8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cefbf2f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"96687df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"86098db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":\"full\"},\"elements\":[{\"id\":\"c3c523a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/materil-inside1.jpeg\",\"id\":393,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\",\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"26322fe\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"space-evenly\"},\"elements\":[{\"id\":\"8173f76\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material-inside2.jpeg\",\"id\":392,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60bb122\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbd39ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material-inside3.jpeg\",\"id\":391,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"25b3df4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28fc19\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"007067d\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false}]'),
(2578, 380, '_wp_page_template', 'elementor_header_footer'),
(2579, 380, '_elementor_edit_mode', 'builder'),
(2580, 380, '_elementor_template_type', 'wp-page'),
(2581, 380, '_elementor_version', '3.16.4'),
(2582, 380, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2584, 380, '_elementor_data', '[{\"id\":\"0672303\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"05de692\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"d6df4e8\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"48649ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"a327b64\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6e32bb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"3ffd7e5\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ff1cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bfe735b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db6cbb\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21d7db4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a87fb16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34c4677\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"8ab1e22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88a3c66\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"a74e214\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"412cd2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\",\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5445d16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5138424\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"eb18508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa555dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3625f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8d6bdd8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e9c17da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bd8f41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"75a3f9e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8a0faba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"1296abd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a57a2b8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cefbf2f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"96687df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"86098db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3c523a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"14aceea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"26322fe\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8173f76\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f685d2a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60bb122\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbd39ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8d50b42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2588, 381, '_wp_page_template', 'elementor_header_footer'),
(2589, 381, '_elementor_edit_mode', 'builder'),
(2590, 381, '_elementor_template_type', 'wp-page'),
(2591, 381, '_elementor_version', '3.16.4'),
(2592, 381, '_elementor_pro_version', '3.16.2'),
(2593, 381, '_elementor_data', '[{\"id\":\"0672303\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"05de692\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"d6df4e8\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"48649ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"a327b64\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6e32bb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"3ffd7e5\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ff1cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bfe735b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db6cbb\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21d7db4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a87fb16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34c4677\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"8ab1e22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88a3c66\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"a74e214\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"412cd2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\",\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5445d16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5138424\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"eb18508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa555dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3625f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8d6bdd8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e9c17da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bd8f41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"75a3f9e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8a0faba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"1296abd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a57a2b8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cefbf2f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"96687df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"86098db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3c523a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"14aceea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"26322fe\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8173f76\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f685d2a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60bb122\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbd39ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8d50b42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2596, 382, '_wp_page_template', 'elementor_header_footer'),
(2597, 382, '_elementor_edit_mode', 'builder'),
(2598, 382, '_elementor_template_type', 'wp-page'),
(2599, 382, '_elementor_version', '3.16.4'),
(2600, 382, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2601, 382, '_elementor_data', '[{\"id\":\"0672303\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"05de692\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"d6df4e8\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"48649ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"a327b64\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6e32bb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"3ffd7e5\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ff1cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bfe735b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db6cbb\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21d7db4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a87fb16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34c4677\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"8ab1e22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88a3c66\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"a74e214\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"412cd2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\",\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5445d16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5138424\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"eb18508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa555dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3625f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8d6bdd8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e9c17da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bd8f41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"75a3f9e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8a0faba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"1296abd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a57a2b8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cefbf2f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"96687df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"86098db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3c523a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"14aceea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"26322fe\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8173f76\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f685d2a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60bb122\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbd39ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8d50b42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2604, 383, '_wp_page_template', 'elementor_header_footer'),
(2605, 383, '_elementor_edit_mode', 'builder'),
(2606, 383, '_elementor_template_type', 'wp-page'),
(2607, 383, '_elementor_version', '3.16.4'),
(2608, 383, '_elementor_pro_version', '3.16.2'),
(2609, 383, '_elementor_data', '[{\"id\":\"0672303\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"05de692\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"d6df4e8\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"48649ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"a327b64\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6e32bb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"3ffd7e5\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ff1cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bfe735b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db6cbb\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21d7db4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a87fb16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34c4677\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"8ab1e22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88a3c66\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"a74e214\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"412cd2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\",\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5445d16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5138424\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"eb18508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa555dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3625f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8d6bdd8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e9c17da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bd8f41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"75a3f9e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8a0faba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1296abd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a57a2b8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cefbf2f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"96687df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"86098db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3c523a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"14aceea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"26322fe\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8173f76\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f685d2a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60bb122\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbd39ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8d50b42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2614, 384, '_wp_page_template', 'elementor_header_footer'),
(2615, 384, '_elementor_edit_mode', 'builder'),
(2616, 384, '_elementor_template_type', 'wp-page'),
(2617, 384, '_elementor_version', '3.16.4'),
(2618, 384, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2619, 384, '_elementor_data', '[{\"id\":\"0672303\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"05de692\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"d6df4e8\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"48649ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"a327b64\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6e32bb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"3ffd7e5\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ff1cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bfe735b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db6cbb\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21d7db4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a87fb16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34c4677\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"8ab1e22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88a3c66\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"a74e214\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"412cd2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\",\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5445d16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5138424\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"eb18508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa555dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3625f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8d6bdd8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e9c17da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bd8f41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"75a3f9e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8a0faba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1296abd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a57a2b8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cefbf2f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"96687df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"86098db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3c523a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"14aceea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"26322fe\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8173f76\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f685d2a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60bb122\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbd39ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8d50b42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2622, 385, '_wp_page_template', 'elementor_header_footer'),
(2623, 385, '_elementor_edit_mode', 'builder'),
(2624, 385, '_elementor_template_type', 'wp-page'),
(2625, 385, '_elementor_version', '3.16.4'),
(2626, 385, '_elementor_pro_version', '3.16.2'),
(2627, 385, '_elementor_data', '[{\"id\":\"0672303\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"05de692\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"d6df4e8\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"48649ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"a327b64\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6e32bb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"3ffd7e5\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ff1cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bfe735b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db6cbb\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21d7db4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a87fb16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34c4677\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"8ab1e22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88a3c66\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"a74e214\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"412cd2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\",\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5445d16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5138424\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"eb18508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa555dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3625f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8d6bdd8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e9c17da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bd8f41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"75a3f9e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8a0faba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1296abd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a57a2b8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cefbf2f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"96687df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"86098db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3c523a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"14aceea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"26322fe\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8173f76\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f685d2a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60bb122\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbd39ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8d50b42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2630, 386, '_wp_page_template', 'elementor_header_footer'),
(2631, 386, '_elementor_edit_mode', 'builder'),
(2632, 386, '_elementor_template_type', 'wp-page'),
(2633, 386, '_elementor_version', '3.16.4'),
(2634, 386, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2635, 386, '_elementor_data', '[{\"id\":\"0672303\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"05de692\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"d6df4e8\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"48649ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"a327b64\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6e32bb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"3ffd7e5\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ff1cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bfe735b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db6cbb\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21d7db4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a87fb16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34c4677\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"8ab1e22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88a3c66\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"a74e214\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"412cd2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\",\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5445d16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5138424\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"eb18508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa555dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3625f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8d6bdd8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e9c17da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bd8f41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"75a3f9e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8a0faba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1296abd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a57a2b8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cefbf2f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"96687df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"86098db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3c523a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"14aceea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"26322fe\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8173f76\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f685d2a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60bb122\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbd39ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8d50b42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"25b3df4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28fc19\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"007067d\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false}]'),
(2639, 387, '_wp_page_template', 'elementor_header_footer'),
(2640, 387, '_elementor_edit_mode', 'builder'),
(2641, 387, '_elementor_template_type', 'wp-page'),
(2642, 387, '_elementor_version', '3.16.4'),
(2643, 387, '_elementor_pro_version', '3.16.2'),
(2644, 387, '_elementor_data', '[{\"id\":\"0672303\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"05de692\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"d6df4e8\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"48649ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"a327b64\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6e32bb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"3ffd7e5\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ff1cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bfe735b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db6cbb\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21d7db4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a87fb16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34c4677\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"8ab1e22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88a3c66\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"a74e214\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"412cd2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\",\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5445d16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5138424\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"eb18508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa555dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3625f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8d6bdd8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e9c17da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bd8f41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"75a3f9e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8a0faba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1296abd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a57a2b8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cefbf2f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"96687df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"86098db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3c523a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"14aceea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"26322fe\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8173f76\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f685d2a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60bb122\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbd39ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8d50b42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"25b3df4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28fc19\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"007067d\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false}]'),
(2646, 388, '_wp_page_template', 'elementor_header_footer'),
(2647, 388, '_elementor_edit_mode', 'builder'),
(2648, 388, '_elementor_template_type', 'wp-page'),
(2649, 388, '_elementor_version', '3.16.4'),
(2650, 388, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2651, 388, '_elementor_data', '[{\"id\":\"0672303\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"05de692\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"d6df4e8\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"48649ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"a327b64\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6e32bb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"3ffd7e5\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ff1cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bfe735b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db6cbb\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21d7db4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a87fb16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34c4677\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"8ab1e22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88a3c66\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"a74e214\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"412cd2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\",\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5445d16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5138424\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"eb18508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa555dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3625f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8d6bdd8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e9c17da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bd8f41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"75a3f9e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8a0faba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1296abd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a57a2b8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cefbf2f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"96687df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"86098db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3c523a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"14aceea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"26322fe\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8173f76\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f685d2a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60bb122\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbd39ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8d50b42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"25b3df4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28fc19\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"007067d\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false}]'),
(2653, 389, '_wp_page_template', 'elementor_header_footer'),
(2654, 389, '_elementor_edit_mode', 'builder'),
(2655, 389, '_elementor_template_type', 'wp-page'),
(2656, 389, '_elementor_version', '3.16.4'),
(2657, 389, '_elementor_pro_version', '3.16.2'),
(2658, 389, '_elementor_data', '[{\"id\":\"0672303\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"05de692\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"d6df4e8\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"48649ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"a327b64\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6e32bb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"3ffd7e5\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ff1cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"custom_css\":\".display-none{\\n    display: none;\\n}\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bfe735b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db6cbb\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21d7db4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a87fb16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34c4677\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"8ab1e22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88a3c66\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"a74e214\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"412cd2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\",\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5445d16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5138424\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"eb18508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa555dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3625f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8d6bdd8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e9c17da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bd8f41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"75a3f9e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8a0faba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1296abd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a57a2b8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cefbf2f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"96687df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"86098db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3c523a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"14aceea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"26322fe\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8173f76\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f685d2a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60bb122\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbd39ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8d50b42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"25b3df4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28fc19\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"007067d\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false}]'),
(2661, 390, '_wp_attached_file', '2023/10/material.jpeg'),
(2662, 390, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:332;s:6:\"height\";i:284;s:4:\"file\";s:21:\"2023/10/material.jpeg\";s:8:\"filesize\";i:147948;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"material-300x257.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22207;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"material-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7771;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2663, 391, '_wp_attached_file', '2023/10/material-inside3.jpeg'),
(2664, 391, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:687;s:6:\"height\";i:284;s:4:\"file\";s:29:\"2023/10/material-inside3.jpeg\";s:8:\"filesize\";i:208471;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"material-inside3-300x124.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:124;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9175;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"material-inside3-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5471;}s:13:\"ocean-thumb-m\";a:5:{s:4:\"file\";s:29:\"material-inside3-600x284.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34215;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2665, 392, '_wp_attached_file', '2023/10/material-inside2.jpeg'),
(2666, 392, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:333;s:6:\"height\";i:284;s:4:\"file\";s:29:\"2023/10/material-inside2.jpeg\";s:8:\"filesize\";i:127098;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"material-inside2-300x256.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18305;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"material-inside2-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6483;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2667, 393, '_wp_attached_file', '2023/10/materil-inside1.jpeg'),
(2668, 393, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:332;s:6:\"height\";i:284;s:4:\"file\";s:28:\"2023/10/materil-inside1.jpeg\";s:8:\"filesize\";i:88372;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"materil-inside1-300x257.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12415;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"materil-inside1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4367;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2669, 394, '_wp_page_template', 'elementor_header_footer'),
(2670, 394, '_elementor_edit_mode', 'builder'),
(2671, 394, '_elementor_template_type', 'wp-page'),
(2672, 394, '_elementor_version', '3.16.4'),
(2673, 394, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2674, 394, '_elementor_data', '[{\"id\":\"0672303\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"05de692\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"d6df4e8\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"48649ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"a327b64\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6e32bb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"3ffd7e5\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ff1cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"custom_css\":\".display-none{\\n    display: none;\\n}\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bfe735b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db6cbb\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21d7db4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a87fb16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34c4677\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"8ab1e22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88a3c66\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"a74e214\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"412cd2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\",\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5445d16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5138424\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"eb18508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa555dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3625f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8d6bdd8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e9c17da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bd8f41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"75a3f9e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8a0faba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1296abd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a57a2b8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cefbf2f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"96687df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"86098db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3c523a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"14aceea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"26322fe\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8173f76\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f685d2a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60bb122\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbd39ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8d50b42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"25b3df4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28fc19\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"007067d\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false}]'),
(2676, 395, '_wp_page_template', 'elementor_header_footer'),
(2677, 395, '_elementor_edit_mode', 'builder'),
(2678, 395, '_elementor_template_type', 'wp-page'),
(2679, 395, '_elementor_version', '3.16.4'),
(2680, 395, '_elementor_pro_version', '3.16.2'),
(2681, 395, '_elementor_data', '[{\"id\":\"0672303\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"05de692\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"d6df4e8\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"48649ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"a327b64\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6e32bb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"3ffd7e5\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ff1cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"custom_css\":\".display-none{\\n    display: none;\\n}\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bfe735b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db6cbb\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21d7db4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a87fb16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34c4677\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"8ab1e22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88a3c66\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"a74e214\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"412cd2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\",\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5445d16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5138424\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"eb18508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa555dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3625f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8d6bdd8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e9c17da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bd8f41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"75a3f9e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8a0faba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1296abd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a57a2b8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cefbf2f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"96687df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"86098db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3c523a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"14aceea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"26322fe\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8173f76\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f685d2a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60bb122\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbd39ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8d50b42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"25b3df4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28fc19\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"007067d\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false}]'),
(2683, 396, '_wp_page_template', 'elementor_header_footer'),
(2684, 396, '_elementor_edit_mode', 'builder'),
(2685, 396, '_elementor_template_type', 'wp-page'),
(2686, 396, '_elementor_version', '3.16.4'),
(2687, 396, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2688, 396, '_elementor_data', '[{\"id\":\"0672303\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"05de692\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"d6df4e8\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"48649ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"a327b64\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6e32bb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"3ffd7e5\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfe735b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db6cbb\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21d7db4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material.jpeg\",\"id\":390,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34c4677\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"8ab1e22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a74e214\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"412cd2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\",\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5138424\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"eb18508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa555dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3625f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e9c17da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bd8f41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8a0faba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1296abd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a57a2b8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cefbf2f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"96687df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"86098db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3c523a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/materil-inside1.jpeg\",\"id\":393,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"26322fe\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8173f76\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material-inside2.jpeg\",\"id\":392,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60bb122\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbd39ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material-inside3.jpeg\",\"id\":391,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"25b3df4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28fc19\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"007067d\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false}]'),
(2692, 397, '_wp_page_template', 'elementor_header_footer'),
(2693, 397, '_elementor_edit_mode', 'builder'),
(2694, 397, '_elementor_template_type', 'wp-page'),
(2695, 397, '_elementor_version', '3.16.4'),
(2696, 397, '_elementor_pro_version', '3.16.2'),
(2697, 397, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2700, 398, '_wp_page_template', 'elementor_header_footer'),
(2701, 398, '_elementor_edit_mode', 'builder'),
(2702, 398, '_elementor_template_type', 'wp-page'),
(2703, 398, '_elementor_version', '3.16.4'),
(2704, 398, '_elementor_pro_version', '3.16.2'),
(2705, 398, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"e8610c7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"f88e0d1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7c2f246\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5843d55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fa780\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"884cc1a\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0d1e6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"babd6b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":18.761,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b92d46\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"db651ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a731f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":21.889,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"95c5a3e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e04215\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0bd372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":47,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fdf7c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"0e44d9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbb15b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0301890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b73ec6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f8e35e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d26c33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ff43db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"e819eb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd66c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"869847f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"040db92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b2900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d1d526\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e58beae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a03f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27bb008\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5195312\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b29c8a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"27c167d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Name of Project\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_x\":{\"size\":35,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.298,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2708, 399, '_wp_page_template', 'elementor_header_footer'),
(2709, 399, '_elementor_edit_mode', 'builder'),
(2710, 399, '_elementor_template_type', 'wp-page'),
(2711, 399, '_elementor_version', '3.16.4'),
(2712, 399, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2713, 399, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"bae3fd8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"339c2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coming Soon\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2717, 400, '_wp_attached_file', '2023/10/gallery7.jpeg'),
(2718, 400, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:684;s:6:\"height\";i:679;s:4:\"file\";s:21:\"2023/10/gallery7.jpeg\";s:8:\"filesize\";i:452178;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"gallery7-300x298.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:298;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26049;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"gallery7-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8020;}s:13:\"ocean-thumb-m\";a:5:{s:4:\"file\";s:21:\"gallery7-600x600.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79589;}s:14:\"ocean-thumb-ml\";a:5:{s:4:\"file\";s:21:\"gallery7-684x450.jpeg\";s:5:\"width\";i:684;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84461;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2719, 401, '_wp_attached_file', '2023/10/gallery6.jpeg'),
(2720, 401, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:684;s:6:\"height\";i:679;s:4:\"file\";s:21:\"2023/10/gallery6.jpeg\";s:8:\"filesize\";i:493872;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"gallery6-300x298.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:298;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16718;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"gallery6-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4631;}s:13:\"ocean-thumb-m\";a:5:{s:4:\"file\";s:21:\"gallery6-600x600.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67925;}s:14:\"ocean-thumb-ml\";a:5:{s:4:\"file\";s:21:\"gallery6-684x450.jpeg\";s:5:\"width\";i:684;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68518;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2721, 402, '_wp_attached_file', '2023/10/gallery5.jpeg'),
(2722, 402, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:684;s:6:\"height\";i:679;s:4:\"file\";s:21:\"2023/10/gallery5.jpeg\";s:8:\"filesize\";i:298564;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"gallery5-300x298.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:298;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14261;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"gallery5-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4680;}s:13:\"ocean-thumb-m\";a:5:{s:4:\"file\";s:21:\"gallery5-600x600.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43328;}s:14:\"ocean-thumb-ml\";a:5:{s:4:\"file\";s:21:\"gallery5-684x450.jpeg\";s:5:\"width\";i:684;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38460;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2723, 403, '_wp_attached_file', '2023/10/gallery4.jpeg'),
(2724, 403, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:684;s:6:\"height\";i:679;s:4:\"file\";s:21:\"2023/10/gallery4.jpeg\";s:8:\"filesize\";i:416899;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"gallery4-300x298.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:298;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18294;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"gallery4-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6135;}s:13:\"ocean-thumb-m\";a:5:{s:4:\"file\";s:21:\"gallery4-600x600.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55441;}s:14:\"ocean-thumb-ml\";a:5:{s:4:\"file\";s:21:\"gallery4-684x450.jpeg\";s:5:\"width\";i:684;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55527;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2725, 404, '_wp_attached_file', '2023/10/gallery3.jpeg'),
(2726, 404, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:684;s:6:\"height\";i:679;s:4:\"file\";s:21:\"2023/10/gallery3.jpeg\";s:8:\"filesize\";i:723496;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"gallery3-300x298.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:298;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26506;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"gallery3-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7092;}s:13:\"ocean-thumb-m\";a:5:{s:4:\"file\";s:21:\"gallery3-600x600.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101834;}s:14:\"ocean-thumb-ml\";a:5:{s:4:\"file\";s:21:\"gallery3-684x450.jpeg\";s:5:\"width\";i:684;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102224;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2727, 405, '_wp_attached_file', '2023/10/gallery1.jpeg'),
(2728, 405, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:684;s:6:\"height\";i:679;s:4:\"file\";s:21:\"2023/10/gallery1.jpeg\";s:8:\"filesize\";i:365819;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"gallery1-300x298.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:298;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16289;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"gallery1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5518;}s:13:\"ocean-thumb-m\";a:5:{s:4:\"file\";s:21:\"gallery1-600x600.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49889;}s:14:\"ocean-thumb-ml\";a:5:{s:4:\"file\";s:21:\"gallery1-684x450.jpeg\";s:5:\"width\";i:684;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54351;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2729, 406, '_elementor_edit_mode', 'builder'),
(2730, 406, '_elementor_template_type', 'wp-page'),
(2731, 406, '_elementor_version', '3.16.4'),
(2732, 406, '_wp_page_template', 'elementor_header_footer'),
(2733, 406, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"home-slider\"},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material2.jpeg\",\"id\":365,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material3.jpeg\",\"id\":364,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kithchens.jpeg\",\"id\":352,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/bathrooms.jpeg\",\"id\":351,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24.871,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.373,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/living-room.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/by-style-home.jpeg\",\"id\":354,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/showroom.jpeg\",\"id\":355,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":22.472,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.666,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram.jpeg\",\"id\":357,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":29.999,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.943,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br \\/><strong>Eco-friendly materials:<\\/strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.<\\/p><p><strong> Empowering artisans:<\\/strong> We\\u2019re more than just a luxury brand; we\\u2019re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2735, 406, '_elementor_pro_version', '3.16.2'),
(2737, 407, '_elementor_edit_mode', 'builder'),
(2738, 407, '_elementor_template_type', 'wp-page'),
(2739, 407, '_elementor_version', '3.16.4'),
(2740, 407, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2741, 407, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"home-slider\"},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material2.jpeg\",\"id\":365,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material3.jpeg\",\"id\":364,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kithchens.jpeg\",\"id\":352,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/bathrooms.jpeg\",\"id\":351,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24.871,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.373,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/living-room.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/by-style-home.jpeg\",\"id\":354,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/showroom.jpeg\",\"id\":355,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":22.472,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.666,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram.jpeg\",\"id\":357,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":29.999,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.943,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br \\/><strong>Eco-friendly materials:<\\/strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.<\\/p><p><strong> Empowering artisans:<\\/strong> We\\u2019re more than just a luxury brand; we\\u2019re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2743, 407, '_elementor_pro_version', '3.16.2'),
(2745, 408, '_elementor_edit_mode', 'builder'),
(2746, 408, '_elementor_template_type', 'wp-page'),
(2747, 408, '_elementor_version', '3.16.4'),
(2748, 408, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2749, 408, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"home-slider\"},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material2.jpeg\",\"id\":365,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material3.jpeg\",\"id\":364,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"},{\"id\":400,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery7.jpeg\"},{\"id\":401,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery6.jpeg\"},{\"id\":402,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery5.jpeg\"},{\"id\":403,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery4.jpeg\"},{\"id\":404,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery3.jpeg\"},{\"id\":405,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery1.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kithchens.jpeg\",\"id\":352,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/bathrooms.jpeg\",\"id\":351,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24.871,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.373,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/living-room.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/by-style-home.jpeg\",\"id\":354,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/showroom.jpeg\",\"id\":355,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":22.472,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.666,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram.jpeg\",\"id\":357,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":29.999,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.943,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br \\/><strong>Eco-friendly materials:<\\/strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.<\\/p><p><strong> Empowering artisans:<\\/strong> We\\u2019re more than just a luxury brand; we\\u2019re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2751, 408, '_elementor_pro_version', '3.16.2'),
(2763, 415, '_elementor_edit_mode', 'builder'),
(2764, 415, '_elementor_template_type', 'wp-page'),
(2765, 415, '_elementor_version', '3.16.4'),
(2766, 415, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2767, 415, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"home-slider\"},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material2.jpeg\",\"id\":365,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material3.jpeg\",\"id\":364,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"},{\"id\":400,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery7.jpeg\"},{\"id\":401,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery6.jpeg\"},{\"id\":402,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery5.jpeg\"},{\"id\":403,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery4.jpeg\"},{\"id\":404,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery3.jpeg\"},{\"id\":405,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery1.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kithchens.jpeg\",\"id\":352,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/bathrooms.jpeg\",\"id\":351,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24.871,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.373,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/living-room.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/by-style-home.jpeg\",\"id\":354,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/showroom.jpeg\",\"id\":355,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":22.472,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.666,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram.jpeg\",\"id\":357,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":29.999,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.943,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br \\/><strong>Eco-friendly materials:<\\/strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.<\\/p><p><strong> Empowering artisans:<\\/strong> We\\u2019re more than just a luxury brand; we\\u2019re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2769, 415, '_elementor_pro_version', '3.16.2'),
(2771, 416, '_elementor_edit_mode', 'builder'),
(2772, 416, '_elementor_template_type', 'wp-page'),
(2773, 416, '_elementor_version', '3.16.4'),
(2774, 416, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2775, 416, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"home-slider\"},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material2.jpeg\",\"id\":365,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material3.jpeg\",\"id\":364,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"},{\"id\":400,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery7.jpeg\"},{\"id\":401,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery6.jpeg\"},{\"id\":402,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery5.jpeg\"},{\"id\":403,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery4.jpeg\"},{\"id\":404,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery3.jpeg\"},{\"id\":405,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery1.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kithchens.jpeg\",\"id\":352,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/bathrooms.jpeg\",\"id\":351,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24.871,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.373,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/living-room.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/by-style-home.jpeg\",\"id\":354,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/showroom.jpeg\",\"id\":355,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":22.472,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.666,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram.jpeg\",\"id\":357,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":29.999,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.943,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br \\/><strong>Eco-friendly materials:<\\/strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.<\\/p><p><strong> Empowering artisans:<\\/strong> We\\u2019re more than just a luxury brand; we\\u2019re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2777, 416, '_elementor_pro_version', '3.16.2'),
(2779, 417, '_elementor_edit_mode', 'builder'),
(2780, 417, '_elementor_template_type', 'wp-page'),
(2781, 417, '_elementor_version', '3.16.4'),
(2782, 417, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2783, 417, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"home-slider\"},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material2.jpeg\",\"id\":365,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material3.jpeg\",\"id\":364,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"},{\"id\":400,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery7.jpeg\"},{\"id\":401,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery6.jpeg\"},{\"id\":402,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery5.jpeg\"},{\"id\":403,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery4.jpeg\"},{\"id\":404,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery3.jpeg\"},{\"id\":405,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery1.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"autoplay_speed\":3000},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kithchens.jpeg\",\"id\":352,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/bathrooms.jpeg\",\"id\":351,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24.871,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.373,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/living-room.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/by-style-home.jpeg\",\"id\":354,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/showroom.jpeg\",\"id\":355,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":22.472,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.666,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram.jpeg\",\"id\":357,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":29.999,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.943,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br \\/><strong>Eco-friendly materials:<\\/strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.<\\/p><p><strong> Empowering artisans:<\\/strong> We\\u2019re more than just a luxury brand; we\\u2019re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2785, 417, '_elementor_pro_version', '3.16.2'),
(2801, 421, '_wp_page_template', 'elementor_header_footer'),
(2802, 421, '_elementor_edit_mode', 'builder'),
(2803, 421, '_elementor_template_type', 'wp-page'),
(2804, 421, '_elementor_version', '3.16.4'),
(2805, 421, '_elementor_pro_version', '3.16.2'),
(2806, 421, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"bae3fd8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"339c2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coming Soon\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2808, 422, '_wp_page_template', 'elementor_header_footer'),
(2809, 422, '_elementor_edit_mode', 'builder'),
(2810, 422, '_elementor_template_type', 'wp-page'),
(2811, 422, '_elementor_version', '3.16.4'),
(2812, 422, '_elementor_pro_version', '3.16.2'),
(2813, 422, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"bae3fd8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"339c2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coming Soon\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2815, 423, '_wp_page_template', 'elementor_header_footer'),
(2816, 423, '_elementor_edit_mode', 'builder'),
(2817, 423, '_elementor_template_type', 'wp-page'),
(2818, 423, '_elementor_version', '3.16.4'),
(2819, 423, '_elementor_pro_version', '3.16.2'),
(2820, 423, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"bae3fd8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":70,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"339c2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coming Soon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2823, 424, '_wp_page_template', 'elementor_header_footer'),
(2824, 424, '_elementor_edit_mode', 'builder'),
(2825, 424, '_elementor_template_type', 'wp-page'),
(2826, 424, '_elementor_version', '3.16.4'),
(2827, 424, '_elementor_pro_version', '3.16.2'),
(2828, 424, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"bae3fd8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":70,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"339c2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coming Soon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2830, 425, '_wp_page_template', 'elementor_header_footer'),
(2831, 425, '_elementor_edit_mode', 'builder'),
(2832, 425, '_elementor_template_type', 'wp-page'),
(2833, 425, '_elementor_version', '3.16.4'),
(2834, 425, '_elementor_pro_version', '3.16.2'),
(2835, 425, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"bae3fd8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":70,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"339c2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coming Soon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2837, 426, '_wp_page_template', 'elementor_header_footer'),
(2838, 426, '_elementor_edit_mode', 'builder'),
(2839, 426, '_elementor_template_type', 'wp-page'),
(2840, 426, '_elementor_version', '3.16.4'),
(2841, 426, '_elementor_pro_version', '3.16.2'),
(2842, 426, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"bae3fd8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":70,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"339c2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coming Soon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2845, 427, '_wp_page_template', 'elementor_header_footer'),
(2846, 427, '_elementor_edit_mode', 'builder'),
(2847, 427, '_elementor_template_type', 'wp-page'),
(2848, 427, '_elementor_version', '3.16.4'),
(2849, 427, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2850, 427, '_elementor_data', '[{\"id\":\"0672303\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"05de692\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"d6df4e8\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"48649ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"a327b64\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6e32bb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"3ffd7e5\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfe735b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db6cbb\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21d7db4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material.jpeg\",\"id\":390,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34c4677\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"8ab1e22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a74e214\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"412cd2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\",\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5138424\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"eb18508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa555dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3625f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e9c17da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bd8f41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8a0faba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1296abd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a57a2b8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cefbf2f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"96687df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"86098db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3c523a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/materil-inside1.jpeg\",\"id\":393,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"26322fe\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8173f76\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material-inside2.jpeg\",\"id\":392,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60bb122\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbd39ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material-inside3.jpeg\",\"id\":391,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"25b3df4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28fc19\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"007067d\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false}]'),
(2853, 428, '_wp_page_template', 'elementor_header_footer'),
(2854, 428, '_elementor_edit_mode', 'builder'),
(2855, 428, '_elementor_template_type', 'wp-page'),
(2856, 428, '_elementor_version', '3.16.4'),
(2857, 428, '_elementor_pro_version', '3.16.2'),
(2858, 428, '_elementor_data', '[{\"id\":\"0672303\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"05de692\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"d6df4e8\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"48649ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"a327b64\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6e32bb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"3ffd7e5\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfe735b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db6cbb\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21d7db4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material.jpeg\",\"id\":390,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34c4677\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"8ab1e22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a74e214\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"412cd2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\",\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5138424\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"eb18508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa555dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3625f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e9c17da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bd8f41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8a0faba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1296abd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a57a2b8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cefbf2f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"96687df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"86098db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3c523a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/materil-inside1.jpeg\",\"id\":393,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"26322fe\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8173f76\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material-inside2.jpeg\",\"id\":392,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60bb122\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbd39ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material-inside3.jpeg\",\"id\":391,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"25b3df4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28fc19\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"007067d\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false}]'),
(2861, 429, '_wp_page_template', 'elementor_header_footer'),
(2862, 429, '_elementor_edit_mode', 'builder'),
(2863, 429, '_elementor_template_type', 'wp-page'),
(2864, 429, '_elementor_version', '3.16.4'),
(2865, 429, '_elementor_pro_version', '3.16.2'),
(2866, 429, '_elementor_data', '[{\"id\":\"0672303\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"05de692\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"d6df4e8\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"48649ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"a327b64\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6e32bb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"3ffd7e5\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfe735b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db6cbb\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21d7db4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material.jpeg\",\"id\":390,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34c4677\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"8ab1e22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a74e214\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"412cd2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\",\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5138424\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"eb18508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa555dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3625f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e9c17da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bd8f41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8a0faba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1296abd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a57a2b8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cefbf2f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"96687df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"86098db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3c523a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/materil-inside1.jpeg\",\"id\":393,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"26322fe\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8173f76\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material-inside2.jpeg\",\"id\":392,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60bb122\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbd39ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material-inside3.jpeg\",\"id\":391,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"25b3df4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28fc19\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"007067d\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false}]'),
(2870, 430, '_elementor_edit_mode', 'builder'),
(2871, 430, '_elementor_template_type', 'wp-page'),
(2872, 430, '_elementor_version', '3.16.4'),
(2873, 430, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2874, 430, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"home-slider\"},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material2.jpeg\",\"id\":365,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material3.jpeg\",\"id\":364,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"},{\"id\":400,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery7.jpeg\"},{\"id\":401,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery6.jpeg\"},{\"id\":402,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery5.jpeg\"},{\"id\":403,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery4.jpeg\"},{\"id\":404,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery3.jpeg\"},{\"id\":405,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery1.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"autoplay_speed\":3000},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kithchens.jpeg\",\"id\":352,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/bathrooms.jpeg\",\"id\":351,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24.871,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.373,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/living-room.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/by-style-home.jpeg\",\"id\":354,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/showroom.jpeg\",\"id\":355,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":22.472,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.666,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram.jpeg\",\"id\":357,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":29.999,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.943,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br \\/><strong>Eco-friendly materials:<\\/strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.<\\/p><p><strong> Empowering artisans:<\\/strong> We\\u2019re more than just a luxury brand; we\\u2019re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2876, 430, '_elementor_pro_version', '3.16.2'),
(2878, 431, '_elementor_edit_mode', 'builder'),
(2879, 431, '_elementor_template_type', 'wp-page'),
(2880, 431, '_elementor_version', '3.16.4'),
(2881, 431, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2882, 431, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"home-slider\"},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material2.jpeg\",\"id\":365,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material3.jpeg\",\"id\":364,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"},{\"id\":400,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery7.jpeg\"},{\"id\":401,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery6.jpeg\"},{\"id\":402,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery5.jpeg\"},{\"id\":403,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery4.jpeg\"},{\"id\":404,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery3.jpeg\"},{\"id\":405,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery1.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"autoplay_speed\":3000},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kithchens.jpeg\",\"id\":352,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/bathrooms.jpeg\",\"id\":351,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24.871,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.373,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/living-room.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/by-style-home.jpeg\",\"id\":354,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/showroom.jpeg\",\"id\":355,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":22.472,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.666,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram.jpeg\",\"id\":357,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":29.999,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.943,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br \\/><strong>Eco-friendly materials:<\\/strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.<\\/p><p><strong> Empowering artisans:<\\/strong> We\\u2019re more than just a luxury brand; we\\u2019re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2884, 431, '_elementor_pro_version', '3.16.2'),
(2886, 432, '_elementor_edit_mode', 'builder'),
(2887, 432, '_elementor_template_type', 'wp-page'),
(2888, 432, '_elementor_version', '3.16.4'),
(2889, 432, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2890, 432, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"home-slider\"},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material2.jpeg\",\"id\":365,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material3.jpeg\",\"id\":364,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"},{\"id\":400,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery7.jpeg\"},{\"id\":401,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery6.jpeg\"},{\"id\":402,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery5.jpeg\"},{\"id\":403,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery4.jpeg\"},{\"id\":404,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery3.jpeg\"},{\"id\":405,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery1.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"autoplay_speed\":3000},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kithchens.jpeg\",\"id\":352,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/bathrooms.jpeg\",\"id\":351,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24.871,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.373,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/living-room.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/by-style-home.jpeg\",\"id\":354,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"flex_justify_content\":\"center\",\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"size\":12.355,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"size\":-2.998,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/showroom.jpeg\",\"id\":355,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":22.472,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.666,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram.jpeg\",\"id\":357,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":29.999,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.943,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br \\/><strong>Eco-friendly materials:<\\/strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.<\\/p><p><strong> Empowering artisans:<\\/strong> We\\u2019re more than just a luxury brand; we\\u2019re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2892, 432, '_elementor_pro_version', '3.16.2'),
(2896, 433, '_elementor_edit_mode', 'builder'),
(2897, 433, '_elementor_template_type', 'kit'),
(2898, 433, '_wp_page_template', 'default'),
(2899, 433, '_elementor_page_settings', 'a:13:{s:9:\"site_name\";s:12:\"Beyond Color\";s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:13:\"custom_colors\";a:0:{}s:36:\"typography_enable_styleguide_preview\";s:3:\"yes\";s:17:\"system_typography\";a:4:{i:0;a:6:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_logo\";a:5:{s:3:\"url\";s:83:\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png\";s:2:\"id\";i:69;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:12:\"site_favicon\";a:5:{s:3:\"url\";s:72:\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/favicon.png\";s:2:\"id\";i:75;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:12:\"Beyond Color\";s:6:\"source\";s:7:\"library\";}s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;}'),
(2900, 433, '_elementor_data', '[]'),
(2902, 433, '_elementor_version', '3.16.4'),
(2903, 433, '_elementor_pro_version', '3.16.2'),
(2916, 434, '_elementor_edit_mode', 'builder'),
(2917, 434, '_elementor_template_type', 'wp-page'),
(2918, 434, '_elementor_version', '3.16.4'),
(2919, 434, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2920, 434, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"home-slider\"},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material2.jpeg\",\"id\":365,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material3.jpeg\",\"id\":364,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"},{\"id\":400,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery7.jpeg\"},{\"id\":401,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery6.jpeg\"},{\"id\":402,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery5.jpeg\"},{\"id\":403,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery4.jpeg\"},{\"id\":404,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery3.jpeg\"},{\"id\":405,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery1.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"autoplay_speed\":3000},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kithchens.jpeg\",\"id\":352,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/bathrooms.jpeg\",\"id\":351,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24.871,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.373,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/living-room.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/by-style-home.jpeg\",\"id\":354,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"flex_justify_content\":\"center\",\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"size\":12.355,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"size\":-2.998,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/showroom.jpeg\",\"id\":355,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":22.472,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.666,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram.jpeg\",\"id\":357,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":29.999,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.943,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br \\/><strong>Eco-friendly materials:<\\/strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.<\\/p><p><strong> Empowering artisans:<\\/strong> We\\u2019re more than just a luxury brand; we\\u2019re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2922, 434, '_elementor_pro_version', '3.16.2'),
(2924, 435, '_elementor_edit_mode', 'builder'),
(2925, 435, '_elementor_template_type', 'wp-page'),
(2926, 435, '_elementor_version', '3.16.4'),
(2927, 435, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2928, 435, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"fixed\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"home-slider\"},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material2.jpeg\",\"id\":365,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material3.jpeg\",\"id\":364,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"},{\"id\":400,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery7.jpeg\"},{\"id\":401,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery6.jpeg\"},{\"id\":402,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery5.jpeg\"},{\"id\":403,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery4.jpeg\"},{\"id\":404,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery3.jpeg\"},{\"id\":405,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery1.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"autoplay_speed\":3000},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kithchens.jpeg\",\"id\":352,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/bathrooms.jpeg\",\"id\":351,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24.871,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.373,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/living-room.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/by-style-home.jpeg\",\"id\":354,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"flex_justify_content\":\"center\",\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"size\":12.355,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"size\":-2.998,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/showroom.jpeg\",\"id\":355,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":22.472,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.666,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram.jpeg\",\"id\":357,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":29.999,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.943,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br \\/><strong>Eco-friendly materials:<\\/strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.<\\/p><p><strong> Empowering artisans:<\\/strong> We\\u2019re more than just a luxury brand; we\\u2019re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2930, 435, '_elementor_pro_version', '3.16.2'),
(2932, 436, '_elementor_edit_mode', 'builder'),
(2933, 436, '_elementor_template_type', 'wp-page'),
(2934, 436, '_elementor_version', '3.16.4'),
(2935, 436, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2936, 436, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"absolute\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"home-slider\"},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material2.jpeg\",\"id\":365,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material3.jpeg\",\"id\":364,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"},{\"id\":400,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery7.jpeg\"},{\"id\":401,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery6.jpeg\"},{\"id\":402,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery5.jpeg\"},{\"id\":403,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery4.jpeg\"},{\"id\":404,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery3.jpeg\"},{\"id\":405,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery1.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"autoplay_speed\":3000},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kithchens.jpeg\",\"id\":352,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/bathrooms.jpeg\",\"id\":351,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24.871,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.373,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/living-room.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/by-style-home.jpeg\",\"id\":354,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"flex_justify_content\":\"center\",\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"size\":12.355,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"size\":-2.998,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/showroom.jpeg\",\"id\":355,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":22.472,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.666,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram.jpeg\",\"id\":357,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":29.999,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.943,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br \\/><strong>Eco-friendly materials:<\\/strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.<\\/p><p><strong> Empowering artisans:<\\/strong> We\\u2019re more than just a luxury brand; we\\u2019re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2938, 436, '_elementor_pro_version', '3.16.2'),
(2943, 437, '_wp_page_template', 'elementor_header_footer'),
(2944, 437, '_elementor_edit_mode', 'builder'),
(2945, 437, '_elementor_template_type', 'wp-page'),
(2946, 437, '_elementor_version', '3.16.4'),
(2947, 437, '_elementor_pro_version', '3.16.2'),
(2948, 437, '_elementor_data', '[{\"id\":\"0672303\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"05de692\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"d6df4e8\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"48649ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"a327b64\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6e32bb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"3ffd7e5\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfe735b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db6cbb\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21d7db4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material.jpeg\",\"id\":390,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34c4677\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"8ab1e22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a74e214\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"412cd2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\",\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5138424\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"eb18508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa555dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3625f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e9c17da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bd8f41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8a0faba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1296abd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a57a2b8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cefbf2f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"96687df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"86098db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3c523a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/materil-inside1.jpeg\",\"id\":393,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"26322fe\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8173f76\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material-inside2.jpeg\",\"id\":392,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60bb122\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbd39ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material-inside3.jpeg\",\"id\":391,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"25b3df4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28fc19\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"007067d\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false}]'),
(2951, 438, '_wp_page_template', 'elementor_header_footer'),
(2952, 438, '_elementor_edit_mode', 'builder'),
(2953, 438, '_elementor_template_type', 'wp-page'),
(2954, 438, '_elementor_version', '3.16.4'),
(2955, 438, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2956, 438, '_elementor_data', '[{\"id\":\"0672303\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"05de692\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"d6df4e8\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"48649ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"a327b64\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6e32bb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"3ffd7e5\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfe735b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db6cbb\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21d7db4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material.jpeg\",\"id\":390,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34c4677\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"8ab1e22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a74e214\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"412cd2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\",\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5138424\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"eb18508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa555dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3625f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e9c17da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bd8f41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8a0faba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1296abd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a57a2b8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cefbf2f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"96687df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"86098db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3c523a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/materil-inside1.jpeg\",\"id\":393,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"26322fe\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8173f76\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material-inside2.jpeg\",\"id\":392,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60bb122\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbd39ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material-inside3.jpeg\",\"id\":391,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"25b3df4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28fc19\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"007067d\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false}]'),
(2959, 439, '_wp_page_template', 'elementor_header_footer'),
(2960, 439, '_elementor_edit_mode', 'builder'),
(2961, 439, '_elementor_template_type', 'wp-page'),
(2962, 439, '_elementor_version', '3.16.4'),
(2963, 439, '_elementor_pro_version', '3.16.2'),
(2964, 439, '_elementor_data', '[{\"id\":\"0672303\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"05de692\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"d6df4e8\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"48649ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"a327b64\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6e32bb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"3ffd7e5\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfe735b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db6cbb\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21d7db4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material.jpeg\",\"id\":390,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34c4677\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"8ab1e22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a74e214\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"412cd2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\",\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5138424\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"eb18508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa555dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3625f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e9c17da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bd8f41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8a0faba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1296abd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a57a2b8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cefbf2f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"96687df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"86098db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3c523a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/materil-inside1.jpeg\",\"id\":393,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"26322fe\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8173f76\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material-inside2.jpeg\",\"id\":392,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60bb122\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbd39ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material-inside3.jpeg\",\"id\":391,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"25b3df4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28fc19\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"007067d\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false}]'),
(2968, 440, '_wp_attached_file', '2023/10/KV_IMG1.jpg'),
(2969, 440, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:375;s:6:\"height\";i:450;s:4:\"file\";s:19:\"2023/10/KV_IMG1.jpg\";s:8:\"filesize\";i:106044;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"KV_IMG1-250x300.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14478;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"KV_IMG1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7575;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2970, 441, '_wp_page_template', 'elementor_header_footer'),
(2971, 441, '_elementor_edit_mode', 'builder'),
(2972, 441, '_elementor_template_type', 'wp-page'),
(2973, 441, '_elementor_version', '3.16.4'),
(2974, 441, '_elementor_pro_version', '3.16.2'),
(2975, 441, '_elementor_data', '[{\"id\":\"a286b48\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1e548fb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"8f68f94\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/about.jpeg\",\"id\":301,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"2c74fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5bf99d7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cde5248\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad6828c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"47ca214\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0982b89\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"78e69af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9fc731\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1ee9a1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d75dd93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"69fd541\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Vision\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ad5e922\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"b7b882e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20d7ba1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"403a2db\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"09af20d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7950ca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"805d9be\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"66eb7d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br \\/>We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.<\\/p><p>We exist to redefine luxury with a conscience.<\\/p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don\\u2019t just tell stories; they create legacies.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1a1c8b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e4d0ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"bb90926\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9899187\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kumar.jpeg\",\"id\":306,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a6745f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"55\",\"isLinked\":false}},\"elements\":[{\"id\":\"fd80b31\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kumar Varma\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"794cb40\",\"elType\":\"widget\",\"settings\":{\"title\":\"Founder & CEO\",\"header_size\":\"p\",\"title_color\":\"#505050\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bed21f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar\\u2019s journey is one of unwavering passion and dedication.<\\/p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he\\u2019s a visionary who believes in the extraordinary.<\\/p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#8B8B8B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"430da80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2760756\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2978, 442, '_wp_page_template', 'elementor_header_footer'),
(2979, 442, '_elementor_edit_mode', 'builder'),
(2980, 442, '_elementor_template_type', 'wp-page'),
(2981, 442, '_elementor_version', '3.16.4'),
(2982, 442, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2983, 442, '_elementor_data', '[{\"id\":\"a286b48\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1e548fb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"8f68f94\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/about.jpeg\",\"id\":301,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"2c74fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5bf99d7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cde5248\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad6828c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"47ca214\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0982b89\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"78e69af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9fc731\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1ee9a1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d75dd93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"69fd541\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Vision\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ad5e922\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"b7b882e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20d7ba1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"403a2db\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"09af20d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7950ca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"805d9be\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"66eb7d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br \\/>We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.<\\/p><p>We exist to redefine luxury with a conscience.<\\/p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don\\u2019t just tell stories; they create legacies.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1a1c8b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e4d0ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"bb90926\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9899187\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kumar.jpeg\",\"id\":306,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a6745f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"55\",\"isLinked\":false}},\"elements\":[{\"id\":\"fd80b31\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kumar Varma\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"794cb40\",\"elType\":\"widget\",\"settings\":{\"title\":\"Founder & CEO\",\"header_size\":\"p\",\"title_color\":\"#505050\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bed21f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar\\u2019s journey is one of unwavering passion and dedication.<\\/p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he\\u2019s a visionary who believes in the extraordinary.<\\/p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#8B8B8B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"430da80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2760756\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2986, 443, '_wp_page_template', 'elementor_header_footer'),
(2987, 443, '_elementor_edit_mode', 'builder'),
(2988, 443, '_elementor_template_type', 'wp-page'),
(2989, 443, '_elementor_version', '3.16.4'),
(2990, 443, '_elementor_pro_version', '3.16.2'),
(2991, 443, '_elementor_data', '[{\"id\":\"a286b48\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1e548fb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"8f68f94\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/about.jpeg\",\"id\":301,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"2c74fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5bf99d7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cde5248\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad6828c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"47ca214\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0982b89\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"78e69af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9fc731\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1ee9a1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d75dd93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"69fd541\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Vision\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ad5e922\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"b7b882e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20d7ba1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"403a2db\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"09af20d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7950ca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"805d9be\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"66eb7d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br \\/>We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.<\\/p><p>We exist to redefine luxury with a conscience.<\\/p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don\\u2019t just tell stories; they create legacies.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1a1c8b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e4d0ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"bb90926\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9899187\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/KV_IMG1.jpg\",\"id\":440,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a6745f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"55\",\"isLinked\":false}},\"elements\":[{\"id\":\"fd80b31\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kumar Verma\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"794cb40\",\"elType\":\"widget\",\"settings\":{\"title\":\"Founder & CEO\",\"header_size\":\"p\",\"title_color\":\"#505050\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bed21f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar\\u2019s journey is one of unwavering passion and dedication.<\\/p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he\\u2019s a visionary who believes in the extraordinary.<\\/p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#8B8B8B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"430da80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2760756\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(2995, 444, '_elementor_edit_mode', 'builder'),
(2996, 444, '_elementor_template_type', 'wp-page'),
(2997, 444, '_elementor_version', '3.16.4'),
(2998, 444, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2999, 444, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"absolute\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"home-slider\"},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material2.jpeg\",\"id\":365,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material3.jpeg\",\"id\":364,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"},{\"id\":400,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery7.jpeg\"},{\"id\":401,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery6.jpeg\"},{\"id\":402,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery5.jpeg\"},{\"id\":403,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery4.jpeg\"},{\"id\":404,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery3.jpeg\"},{\"id\":405,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery1.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"autoplay_speed\":3000},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kithchens.jpeg\",\"id\":352,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/bathrooms.jpeg\",\"id\":351,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24.871,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.373,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/living-room.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/by-style-home.jpeg\",\"id\":354,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"flex_justify_content\":\"center\",\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"size\":12.355,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"size\":-2.998,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/showroom.jpeg\",\"id\":355,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":22.472,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.666,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram.jpeg\",\"id\":357,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":29.999,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.943,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br \\/><strong>Eco-friendly materials:<\\/strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.<\\/p><p><strong> Empowering artisans:<\\/strong> We\\u2019re more than just a luxury brand; we\\u2019re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(3001, 444, '_elementor_pro_version', '3.16.2'),
(3003, 445, '_elementor_edit_mode', 'builder'),
(3004, 445, '_elementor_template_type', 'wp-page'),
(3005, 445, '_elementor_version', '3.16.4'),
(3006, 445, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3007, 445, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"absolute\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"home-slider\"},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material2.jpeg\",\"id\":365,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material3.jpeg\",\"id\":364,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"},{\"id\":400,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery7.jpeg\"},{\"id\":401,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery6.jpeg\"},{\"id\":402,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery5.jpeg\"},{\"id\":403,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery4.jpeg\"},{\"id\":404,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery3.jpeg\"},{\"id\":405,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery1.jpeg\"}],\"image_stretch\":\"yes\",\"navigation\":\"dots\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"autoplay_speed\":3000},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kithchens.jpeg\",\"id\":352,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/bathrooms.jpeg\",\"id\":351,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24.871,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.373,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/living-room.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/by-style-home.jpeg\",\"id\":354,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"flex_justify_content\":\"center\",\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"size\":12.355,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"size\":-2.998,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/showroom.jpeg\",\"id\":355,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":22.472,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.666,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram.jpeg\",\"id\":357,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":29.999,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.943,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br \\/><strong>Eco-friendly materials:<\\/strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.<\\/p><p><strong> Empowering artisans:<\\/strong> We\\u2019re more than just a luxury brand; we\\u2019re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(3009, 445, '_elementor_pro_version', '3.16.2'),
(3011, 446, '_elementor_edit_mode', 'builder'),
(3012, 446, '_elementor_template_type', 'wp-page'),
(3013, 446, '_elementor_version', '3.16.4'),
(3014, 446, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3015, 446, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"absolute\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"home-slider\"},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material2.jpeg\",\"id\":365,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material3.jpeg\",\"id\":364,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"},{\"id\":400,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery7.jpeg\"},{\"id\":401,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery6.jpeg\"},{\"id\":402,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery5.jpeg\"},{\"id\":403,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery4.jpeg\"},{\"id\":404,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery3.jpeg\"},{\"id\":405,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery1.jpeg\"}],\"image_stretch\":\"yes\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"autoplay_speed\":3000,\"arrows_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kithchens.jpeg\",\"id\":352,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/bathrooms.jpeg\",\"id\":351,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24.871,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.373,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/living-room.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/by-style-home.jpeg\",\"id\":354,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"flex_justify_content\":\"center\",\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"size\":12.355,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"size\":-2.998,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/showroom.jpeg\",\"id\":355,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":22.472,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.666,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram.jpeg\",\"id\":357,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":29.999,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.943,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br \\/><strong>Eco-friendly materials:<\\/strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.<\\/p><p><strong> Empowering artisans:<\\/strong> We\\u2019re more than just a luxury brand; we\\u2019re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(3017, 446, '_elementor_pro_version', '3.16.2'),
(3021, 447, '_wp_page_template', 'elementor_header_footer'),
(3022, 447, '_elementor_edit_mode', 'builder'),
(3023, 447, '_elementor_template_type', 'wp-page'),
(3024, 447, '_elementor_version', '3.16.4'),
(3025, 447, '_elementor_pro_version', '3.16.2'),
(3026, 447, '_elementor_data', '[{\"id\":\"a286b48\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1e548fb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"8f68f94\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/about.jpeg\",\"id\":301,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"2c74fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5bf99d7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cde5248\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad6828c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"47ca214\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0982b89\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"78e69af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9fc731\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1ee9a1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d75dd93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"69fd541\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Vision\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ad5e922\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"b7b882e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20d7ba1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"403a2db\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"09af20d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7950ca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"805d9be\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"66eb7d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br \\/>We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.<\\/p><p>We exist to redefine luxury with a conscience.<\\/p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don\\u2019t just tell stories; they create legacies.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1a1c8b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e4d0ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"bb90926\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9899187\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/KV_IMG1.jpg\",\"id\":440,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a6745f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"55\",\"isLinked\":false}},\"elements\":[{\"id\":\"fd80b31\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kumar Verma\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"794cb40\",\"elType\":\"widget\",\"settings\":{\"title\":\"Founder & CEO\",\"header_size\":\"p\",\"title_color\":\"#505050\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bed21f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar\\u2019s journey is one of unwavering passion and dedication.<\\/p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he\\u2019s a visionary who believes in the extraordinary.<\\/p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#8B8B8B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"430da80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2760756\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(3028, 448, '_wp_page_template', 'elementor_header_footer'),
(3029, 448, '_elementor_edit_mode', 'builder'),
(3030, 448, '_elementor_template_type', 'wp-page'),
(3031, 448, '_elementor_version', '3.16.4'),
(3032, 448, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3033, 448, '_elementor_data', '[{\"id\":\"a286b48\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1e548fb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"8f68f94\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/about.jpeg\",\"id\":301,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"2c74fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5bf99d7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cde5248\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad6828c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"47ca214\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0982b89\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"78e69af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9fc731\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1ee9a1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d75dd93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"69fd541\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Vision\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ad5e922\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"b7b882e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20d7ba1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"403a2db\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"09af20d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7950ca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"805d9be\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"66eb7d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br \\/>We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.<\\/p><p>We exist to redefine luxury with a conscience.<\\/p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don\\u2019t just tell stories; they create legacies.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1a1c8b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e4d0ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"bb90926\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9899187\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/KV_IMG1.jpg\",\"id\":440,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a6745f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"55\",\"isLinked\":false}},\"elements\":[{\"id\":\"fd80b31\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kumar Verma\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"794cb40\",\"elType\":\"widget\",\"settings\":{\"title\":\"Founder & CEO\",\"header_size\":\"p\",\"title_color\":\"#505050\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bed21f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar\\u2019s journey is one of unwavering passion and dedication.<\\/p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he\\u2019s a visionary who believes in the extraordinary.<\\/p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#8B8B8B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"430da80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2760756\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(3035, 449, '_wp_page_template', 'elementor_header_footer'),
(3036, 449, '_elementor_edit_mode', 'builder'),
(3037, 449, '_elementor_template_type', 'wp-page'),
(3038, 449, '_elementor_version', '3.16.4'),
(3039, 449, '_elementor_pro_version', '3.16.2'),
(3040, 449, '_elementor_data', '[{\"id\":\"a286b48\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1e548fb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"8f68f94\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/about.jpeg\",\"id\":301,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"2c74fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5bf99d7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cde5248\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad6828c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"47ca214\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0982b89\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"78e69af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9fc731\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1ee9a1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d75dd93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"69fd541\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Vision\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ad5e922\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"b7b882e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20d7ba1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"403a2db\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"09af20d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7950ca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"805d9be\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"66eb7d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br \\/>We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.<\\/p><p>We exist to redefine luxury with a conscience.<\\/p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don\\u2019t just tell stories; they create legacies.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1a1c8b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e4d0ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"bb90926\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9899187\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/KV_IMG1.jpg\",\"id\":440,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a6745f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"55\",\"isLinked\":false}},\"elements\":[{\"id\":\"fd80b31\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kumar Verma\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"794cb40\",\"elType\":\"widget\",\"settings\":{\"title\":\"Founder & CEO\",\"header_size\":\"p\",\"title_color\":\"#505050\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bed21f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar\\u2019s journey is one of unwavering passion and dedication.<\\/p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he\\u2019s a visionary who believes in the extraordinary.<\\/p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#8B8B8B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"430da80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2760756\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(3044, 450, '_wp_page_template', 'elementor_header_footer'),
(3045, 450, '_elementor_edit_mode', 'builder'),
(3046, 450, '_elementor_template_type', 'wp-page'),
(3047, 450, '_elementor_version', '3.16.4'),
(3048, 450, '_elementor_pro_version', '3.16.2'),
(3049, 450, '_elementor_data', '[{\"id\":\"0672303\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"05de692\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"d6df4e8\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"48649ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"a327b64\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6e32bb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"3ffd7e5\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfe735b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db6cbb\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21d7db4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material.jpeg\",\"id\":390,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34c4677\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"8ab1e22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a74e214\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"412cd2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\",\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5138424\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"eb18508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa555dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3625f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e9c17da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bd8f41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8a0faba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1296abd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a57a2b8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cefbf2f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"96687df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"86098db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3c523a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/materil-inside1.jpeg\",\"id\":393,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"26322fe\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8173f76\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material-inside2.jpeg\",\"id\":392,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60bb122\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbd39ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material-inside3.jpeg\",\"id\":391,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"25b3df4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28fc19\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"007067d\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false}]'),
(3052, 451, '_wp_page_template', 'elementor_header_footer'),
(3053, 451, '_elementor_edit_mode', 'builder'),
(3054, 451, '_elementor_template_type', 'wp-page'),
(3055, 451, '_elementor_version', '3.16.4'),
(3056, 451, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3057, 451, '_elementor_data', '[{\"id\":\"0672303\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"05de692\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"d6df4e8\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"48649ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"a327b64\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6e32bb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"3ffd7e5\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfe735b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db6cbb\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21d7db4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material.jpeg\",\"id\":390,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34c4677\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"8ab1e22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a74e214\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"412cd2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\",\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5138424\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"eb18508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa555dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3625f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e9c17da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bd8f41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8a0faba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1296abd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a57a2b8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cefbf2f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"96687df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"86098db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3c523a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/materil-inside1.jpeg\",\"id\":393,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"26322fe\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8173f76\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material-inside2.jpeg\",\"id\":392,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60bb122\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbd39ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material-inside3.jpeg\",\"id\":391,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"25b3df4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28fc19\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"007067d\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false}]'),
(3060, 452, '_wp_page_template', 'elementor_header_footer'),
(3061, 452, '_elementor_edit_mode', 'builder'),
(3062, 452, '_elementor_template_type', 'wp-page'),
(3063, 452, '_elementor_version', '3.16.4'),
(3064, 452, '_elementor_pro_version', '3.16.2'),
(3065, 452, '_elementor_data', '[{\"id\":\"0672303\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"05de692\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"d6df4e8\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"48649ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"a327b64\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6e32bb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"3ffd7e5\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfe735b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db6cbb\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21d7db4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material.jpeg\",\"id\":390,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34c4677\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"8ab1e22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a74e214\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"412cd2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\",\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5138424\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"eb18508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa555dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3625f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e9c17da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bd8f41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8a0faba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1296abd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a57a2b8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cefbf2f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"96687df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"86098db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":\"full\"},\"elements\":[{\"id\":\"c3c523a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/materil-inside1.jpeg\",\"id\":393,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\",\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"26322fe\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8173f76\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material-inside2.jpeg\",\"id\":392,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60bb122\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbd39ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material-inside3.jpeg\",\"id\":391,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"25b3df4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28fc19\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"007067d\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false}]'),
(3069, 453, '_wp_page_template', 'elementor_header_footer'),
(3070, 453, '_elementor_edit_mode', 'builder'),
(3071, 453, '_elementor_template_type', 'wp-page'),
(3072, 453, '_elementor_version', '3.16.4'),
(3073, 453, '_elementor_pro_version', '3.16.2'),
(3074, 453, '_elementor_data', '[{\"id\":\"0672303\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"05de692\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"d6df4e8\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"48649ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"a327b64\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6e32bb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"3ffd7e5\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfe735b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db6cbb\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21d7db4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material.jpeg\",\"id\":390,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34c4677\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"8ab1e22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a74e214\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"412cd2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\",\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5138424\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"eb18508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa555dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3625f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e9c17da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bd8f41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8a0faba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1296abd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a57a2b8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cefbf2f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"96687df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"86098db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":\"full\"},\"elements\":[{\"id\":\"c3c523a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/materil-inside1.jpeg\",\"id\":393,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\",\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"26322fe\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8173f76\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material-inside2.jpeg\",\"id\":392,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60bb122\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbd39ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material-inside3.jpeg\",\"id\":391,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"25b3df4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28fc19\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"007067d\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false}]'),
(3076, 454, '_wp_page_template', 'elementor_header_footer'),
(3077, 454, '_elementor_edit_mode', 'builder'),
(3078, 454, '_elementor_template_type', 'wp-page'),
(3079, 454, '_elementor_version', '3.16.4'),
(3080, 454, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3081, 454, '_elementor_data', '[{\"id\":\"0672303\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"05de692\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"d6df4e8\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"48649ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"a327b64\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6e32bb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"3ffd7e5\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfe735b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db6cbb\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21d7db4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material.jpeg\",\"id\":390,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34c4677\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"8ab1e22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a74e214\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"412cd2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\",\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5138424\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"eb18508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa555dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3625f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e9c17da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bd8f41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8a0faba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1296abd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a57a2b8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cefbf2f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"96687df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"86098db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":\"full\"},\"elements\":[{\"id\":\"c3c523a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/materil-inside1.jpeg\",\"id\":393,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\",\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"26322fe\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8173f76\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material-inside2.jpeg\",\"id\":392,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60bb122\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbd39ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material-inside3.jpeg\",\"id\":391,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"25b3df4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28fc19\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"007067d\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false}]'),
(3083, 455, '_wp_page_template', 'elementor_header_footer'),
(3084, 455, '_elementor_edit_mode', 'builder'),
(3085, 455, '_elementor_template_type', 'wp-page'),
(3086, 455, '_elementor_version', '3.16.4'),
(3087, 455, '_elementor_pro_version', '3.16.2'),
(3088, 455, '_elementor_data', '[{\"id\":\"0672303\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"05de692\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"d6df4e8\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"48649ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"a327b64\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6e32bb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"3ffd7e5\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfe735b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db6cbb\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21d7db4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material.jpeg\",\"id\":390,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34c4677\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"8ab1e22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a74e214\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"412cd2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\",\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5138424\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"eb18508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa555dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3625f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e9c17da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bd8f41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8a0faba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1296abd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a57a2b8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cefbf2f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"96687df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"86098db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":\"full\"},\"elements\":[{\"id\":\"c3c523a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/materil-inside1.jpeg\",\"id\":393,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\",\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"26322fe\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"space-evenly\"},\"elements\":[{\"id\":\"8173f76\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material-inside2.jpeg\",\"id\":392,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60bb122\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbd39ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material-inside3.jpeg\",\"id\":391,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"25b3df4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28fc19\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"007067d\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false}]'),
(3092, 456, '_wp_page_template', 'elementor_header_footer'),
(3093, 456, '_elementor_edit_mode', 'builder'),
(3094, 456, '_elementor_template_type', 'wp-page'),
(3095, 456, '_elementor_version', '3.16.4'),
(3096, 456, '_elementor_pro_version', '3.16.2'),
(3097, 456, '_elementor_data', '[{\"id\":\"0672303\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"05de692\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"d6df4e8\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"48649ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"a327b64\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6e32bb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"3ffd7e5\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfe735b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db6cbb\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21d7db4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material.jpeg\",\"id\":390,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34c4677\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"8ab1e22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a74e214\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"412cd2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\",\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5138424\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"eb18508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa555dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3625f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e9c17da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bd8f41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8a0faba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1296abd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a57a2b8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cefbf2f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"96687df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"86098db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":\"full\"},\"elements\":[{\"id\":\"c3c523a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/materil-inside1.jpeg\",\"id\":393,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\",\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"26322fe\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"space-evenly\"},\"elements\":[{\"id\":\"8173f76\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material-inside2.jpeg\",\"id\":392,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60bb122\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbd39ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material-inside3.jpeg\",\"id\":391,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"25b3df4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28fc19\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"007067d\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false}]'),
(3100, 457, '_wp_page_template', 'elementor_header_footer'),
(3101, 457, '_elementor_edit_mode', 'builder'),
(3102, 457, '_elementor_template_type', 'wp-page'),
(3103, 457, '_elementor_version', '3.16.4'),
(3104, 457, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3105, 457, '_elementor_data', '[{\"id\":\"0672303\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"05de692\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"d6df4e8\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"48649ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"a327b64\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6e32bb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"3ffd7e5\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfe735b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db6cbb\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21d7db4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material.jpeg\",\"id\":390,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34c4677\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"8ab1e22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a74e214\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"412cd2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\",\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5138424\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"eb18508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa555dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3625f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e9c17da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bd8f41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8a0faba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1296abd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a57a2b8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cefbf2f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"96687df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"86098db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":\"full\"},\"elements\":[{\"id\":\"c3c523a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/materil-inside1.jpeg\",\"id\":393,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\",\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"26322fe\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"space-evenly\"},\"elements\":[{\"id\":\"8173f76\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material-inside2.jpeg\",\"id\":392,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60bb122\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbd39ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material-inside3.jpeg\",\"id\":391,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"25b3df4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28fc19\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"007067d\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false}]'),
(3108, 458, '_wp_page_template', 'elementor_header_footer'),
(3109, 458, '_elementor_edit_mode', 'builder'),
(3110, 458, '_elementor_template_type', 'wp-page'),
(3111, 458, '_elementor_version', '3.16.4'),
(3112, 458, '_elementor_pro_version', '3.16.2'),
(3113, 458, '_elementor_data', '[{\"id\":\"0672303\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"05de692\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"d6df4e8\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"48649ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"a327b64\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6e32bb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23.143},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"3ffd7e5\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfe735b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db6cbb\",\"elType\":\"container\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21d7db4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material.jpeg\",\"id\":390,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34c4677\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"flex_direction\":\"column\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"8ab1e22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond.jpeg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a74e214\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"412cd2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond2.jpeg\",\"id\":210,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\",\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5138424\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"eb18508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa555dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3625f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond-3.jpeg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e9c17da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bd8f41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/beyond4.jpeg\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8a0faba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1296abd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a57a2b8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cefbf2f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49.46},\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"96687df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"86098db\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":\"full\"},\"elements\":[{\"id\":\"c3c523a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/materil-inside1.jpeg\",\"id\":393,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\",\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"26322fe\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"space-evenly\"},\"elements\":[{\"id\":\"8173f76\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material-inside2.jpeg\",\"id\":392,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60bb122\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbd39ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material-inside3.jpeg\",\"id\":391,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"25b3df4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28fc19\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"007067d\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":true}],\"isInner\":false}]'),
(3116, 50, '_elementor_controls_usage', 'a:3:{s:8:\"template\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:16:\"section_template\";a:1:{s:11:\"template_id\";i:2;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:23;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:6:{s:14:\"flex_direction\";i:18;s:13:\"content_width\";i:20;s:8:\"flex_gap\";i:5;s:5:\"width\";i:9;s:20:\"flex_justify_content\";i:3;s:16:\"flex_align_items\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:2:{s:7:\"padding\";i:18;s:10:\"_flex_size\";i:3;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:9;s:10:\"image_size\";i:5;}}s:5:\"style\";a:2:{s:19:\"section_style_image\";a:3:{s:5:\"width\";i:9;s:6:\"height\";i:7;s:10:\"object-fit\";i:2;}s:21:\"section_style_caption\";a:2:{s:30:\"caption_typography_line_height\";i:9;s:31:\"caption_typography_word_spacing\";i:9;}}}}}'),
(3120, 459, '_wp_page_template', 'elementor_header_footer'),
(3121, 459, '_elementor_edit_mode', 'builder'),
(3122, 459, '_elementor_template_type', 'wp-page'),
(3123, 459, '_elementor_version', '3.16.4'),
(3124, 459, '_elementor_pro_version', '3.16.2'),
(3125, 459, '_elementor_data', '[{\"id\":\"a286b48\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1e548fb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"8f68f94\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/about.jpeg\",\"id\":301,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"2c74fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5bf99d7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cde5248\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad6828c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"47ca214\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0982b89\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"78e69af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9fc731\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1ee9a1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d75dd93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"69fd541\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Vision\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ad5e922\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"b7b882e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20d7ba1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"403a2db\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"09af20d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7950ca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"805d9be\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"66eb7d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br \\/>We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.<\\/p><p>We exist to redefine luxury with a conscience.<\\/p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don\\u2019t just tell stories; they create legacies.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1a1c8b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e4d0ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"bb90926\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9899187\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/KV_IMG1.jpg\",\"id\":440,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a6745f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"55\",\"isLinked\":false}},\"elements\":[{\"id\":\"fd80b31\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kumar Verma\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"794cb40\",\"elType\":\"widget\",\"settings\":{\"title\":\"Founder & CEO\",\"header_size\":\"p\",\"title_color\":\"#505050\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bed21f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar\\u2019s journey is one of unwavering passion and dedication.<\\/p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he\\u2019s a visionary who believes in the extraordinary.<\\/p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#8B8B8B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"430da80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2760756\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(3128, 460, '_wp_page_template', 'elementor_header_footer'),
(3129, 460, '_elementor_edit_mode', 'builder'),
(3130, 460, '_elementor_template_type', 'wp-page'),
(3131, 460, '_elementor_version', '3.16.4'),
(3132, 460, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3133, 460, '_elementor_data', '[{\"id\":\"a286b48\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1e548fb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"8f68f94\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/about.jpeg\",\"id\":301,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"2c74fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5bf99d7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cde5248\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad6828c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"47ca214\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0982b89\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"78e69af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9fc731\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1ee9a1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d75dd93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"69fd541\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Vision\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ad5e922\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"b7b882e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20d7ba1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"403a2db\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"09af20d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7950ca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"805d9be\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"66eb7d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br \\/>We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.<\\/p><p>We exist to redefine luxury with a conscience.<\\/p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don\\u2019t just tell stories; they create legacies.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1a1c8b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e4d0ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"bb90926\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9899187\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/KV_IMG1.jpg\",\"id\":440,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a6745f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"55\",\"isLinked\":false}},\"elements\":[{\"id\":\"fd80b31\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kumar Verma\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"794cb40\",\"elType\":\"widget\",\"settings\":{\"title\":\"Founder & CEO\",\"header_size\":\"p\",\"title_color\":\"#505050\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bed21f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar\\u2019s journey is one of unwavering passion and dedication.<\\/p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he\\u2019s a visionary who believes in the extraordinary.<\\/p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#8B8B8B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"430da80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2760756\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(3136, 461, '_wp_page_template', 'elementor_header_footer'),
(3137, 461, '_elementor_edit_mode', 'builder'),
(3138, 461, '_elementor_template_type', 'wp-page'),
(3139, 461, '_elementor_version', '3.16.4'),
(3140, 461, '_elementor_pro_version', '3.16.2'),
(3141, 461, '_elementor_data', '[{\"id\":\"a286b48\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1e548fb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"8f68f94\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/about.jpeg\",\"id\":301,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"2c74fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5bf99d7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cde5248\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad6828c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"47ca214\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0982b89\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"78e69af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9fc731\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1ee9a1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d75dd93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"69fd541\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Vision\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ad5e922\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"b7b882e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20d7ba1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"403a2db\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"09af20d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7950ca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"805d9be\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"66eb7d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br \\/>We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.<\\/p><p>We exist to redefine luxury with a conscience.<\\/p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don\\u2019t just tell stories; they create legacies.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1a1c8b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e4d0ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"bb90926\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9899187\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/KV_IMG1.jpg\",\"id\":440,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a6745f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"55\",\"isLinked\":false}},\"elements\":[{\"id\":\"fd80b31\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kumar Verma\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"794cb40\",\"elType\":\"widget\",\"settings\":{\"title\":\"Founder & CEO\",\"header_size\":\"p\",\"title_color\":\"#505050\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bed21f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar\\u2019s journey is one of unwavering passion and dedication.<\\/p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he\\u2019s a visionary who believes in the extraordinary.<\\/p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#8B8B8B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"430da80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2760756\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(3153, 463, '_wp_page_template', 'elementor_header_footer'),
(3154, 463, '_elementor_edit_mode', 'builder'),
(3155, 463, '_elementor_template_type', 'wp-page'),
(3156, 463, '_elementor_version', '3.16.4'),
(3157, 463, '_elementor_pro_version', '3.16.2'),
(3158, 463, '_elementor_data', '[{\"id\":\"a286b48\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1e548fb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"8f68f94\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/about.jpeg\",\"id\":301,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"2c74fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5bf99d7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cde5248\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad6828c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"47ca214\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0982b89\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"78e69af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9fc731\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1ee9a1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d75dd93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"69fd541\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Vision\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ad5e922\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"b7b882e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20d7ba1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"403a2db\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"09af20d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7950ca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"805d9be\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"66eb7d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br \\/>We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.<\\/p><p>We exist to redefine luxury with a conscience.<\\/p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don\\u2019t just tell stories; they create legacies.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1a1c8b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e4d0ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"bb90926\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9899187\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/KV_IMG1.jpg\",\"id\":440,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a6745f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"55\",\"isLinked\":false}},\"elements\":[{\"id\":\"fd80b31\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kumar Verma\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"794cb40\",\"elType\":\"widget\",\"settings\":{\"title\":\"Founder & CEO\",\"header_size\":\"p\",\"title_color\":\"#505050\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bed21f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar\\u2019s journey is one of unwavering passion and dedication.<\\/p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he\\u2019s a visionary who believes in the extraordinary.<\\/p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#8B8B8B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"430da80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2760756\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(3161, 464, '_wp_page_template', 'elementor_header_footer'),
(3162, 464, '_elementor_edit_mode', 'builder'),
(3163, 464, '_elementor_template_type', 'wp-page'),
(3164, 464, '_elementor_version', '3.16.4'),
(3165, 464, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3166, 464, '_elementor_data', '[{\"id\":\"a286b48\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1e548fb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"8f68f94\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/about.jpeg\",\"id\":301,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"2c74fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5bf99d7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cde5248\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad6828c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"47ca214\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0982b89\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"78e69af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9fc731\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1ee9a1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d75dd93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"69fd541\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Vision\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ad5e922\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"b7b882e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20d7ba1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"403a2db\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"09af20d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7950ca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"805d9be\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"66eb7d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br \\/>We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.<\\/p><p>We exist to redefine luxury with a conscience.<\\/p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don\\u2019t just tell stories; they create legacies.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1a1c8b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e4d0ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"bb90926\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9899187\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/KV_IMG1.jpg\",\"id\":440,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a6745f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"55\",\"isLinked\":false}},\"elements\":[{\"id\":\"fd80b31\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kumar Verma\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"794cb40\",\"elType\":\"widget\",\"settings\":{\"title\":\"Founder & CEO\",\"header_size\":\"p\",\"title_color\":\"#505050\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bed21f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar\\u2019s journey is one of unwavering passion and dedication.<\\/p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he\\u2019s a visionary who believes in the extraordinary.<\\/p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#8B8B8B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"430da80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2760756\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(3169, 465, '_wp_page_template', 'elementor_header_footer'),
(3170, 465, '_elementor_edit_mode', 'builder'),
(3171, 465, '_elementor_template_type', 'wp-page'),
(3172, 465, '_elementor_version', '3.16.4'),
(3173, 465, '_elementor_pro_version', '3.16.2'),
(3174, 465, '_elementor_data', '[{\"id\":\"a286b48\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1e548fb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"8f68f94\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/about.jpeg\",\"id\":301,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"2c74fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5bf99d7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cde5248\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad6828c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"47ca214\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0982b89\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"78e69af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9fc731\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1ee9a1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d75dd93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"69fd541\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Vision\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ad5e922\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"b7b882e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20d7ba1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"403a2db\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"09af20d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7950ca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"805d9be\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"66eb7d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br \\/>We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.<\\/p><p>We exist to redefine luxury with a conscience.<\\/p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don\\u2019t just tell stories; they create legacies.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1a1c8b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e4d0ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"bb90926\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9899187\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/KV_IMG1.jpg\",\"id\":440,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a6745f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"55\",\"isLinked\":false}},\"elements\":[{\"id\":\"fd80b31\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kumar Verma\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"794cb40\",\"elType\":\"widget\",\"settings\":{\"title\":\"Founder & CEO\",\"header_size\":\"p\",\"title_color\":\"#505050\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bed21f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar\\u2019s journey is one of unwavering passion and dedication.<\\/p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he\\u2019s a visionary who believes in the extraordinary.<\\/p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#8B8B8B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"430da80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2760756\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(3188, 468, '_wp_attached_file', '2023/10/COM4t-Drify-Light.ttf.woff'),
(3189, 468, '_wp_attachment_metadata', 'a:1:{s:8:\"filesize\";i:16124;}'),
(3194, 469, '_wp_page_template', 'elementor_header_footer'),
(3195, 469, '_elementor_edit_mode', 'builder'),
(3196, 469, '_elementor_template_type', 'wp-page'),
(3197, 469, '_elementor_version', '3.16.4'),
(3198, 469, '_elementor_pro_version', '3.16.2'),
(3199, 469, '_elementor_data', '[{\"id\":\"a286b48\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1e548fb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"8f68f94\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/about.jpeg\",\"id\":301,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"2c74fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5bf99d7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cde5248\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad6828c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"47ca214\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0982b89\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"78e69af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9fc731\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1ee9a1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d75dd93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"69fd541\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Vision\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ad5e922\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"b7b882e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20d7ba1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"403a2db\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"09af20d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7950ca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"805d9be\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"66eb7d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br \\/>We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.<\\/p><p>We exist to redefine luxury with a conscience.<\\/p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don\\u2019t just tell stories; they create legacies.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1a1c8b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e4d0ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"bb90926\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9899187\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/KV_IMG1.jpg\",\"id\":440,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a6745f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"55\",\"isLinked\":false}},\"elements\":[{\"id\":\"fd80b31\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kumar Verma\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"794cb40\",\"elType\":\"widget\",\"settings\":{\"title\":\"Founder & CEO\",\"header_size\":\"p\",\"title_color\":\"#505050\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bed21f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar\\u2019s journey is one of unwavering passion and dedication.<\\/p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he\\u2019s a visionary who believes in the extraordinary.<\\/p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#8B8B8B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"430da80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2760756\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(3201, 470, '_wp_page_template', 'elementor_header_footer'),
(3202, 470, '_elementor_edit_mode', 'builder'),
(3203, 470, '_elementor_template_type', 'wp-page'),
(3204, 470, '_elementor_version', '3.16.4'),
(3205, 470, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3206, 470, '_elementor_data', '[{\"id\":\"a286b48\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1e548fb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"8f68f94\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/about.jpeg\",\"id\":301,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"2c74fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5bf99d7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cde5248\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad6828c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"47ca214\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0982b89\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"78e69af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9fc731\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1ee9a1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d75dd93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"69fd541\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Vision\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ad5e922\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"b7b882e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20d7ba1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"403a2db\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"09af20d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7950ca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"805d9be\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"66eb7d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br \\/>We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.<\\/p><p>We exist to redefine luxury with a conscience.<\\/p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don\\u2019t just tell stories; they create legacies.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1a1c8b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e4d0ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"bb90926\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9899187\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/KV_IMG1.jpg\",\"id\":440,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a6745f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"55\",\"isLinked\":false}},\"elements\":[{\"id\":\"fd80b31\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kumar Verma\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"794cb40\",\"elType\":\"widget\",\"settings\":{\"title\":\"Founder & CEO\",\"header_size\":\"p\",\"title_color\":\"#505050\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bed21f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar\\u2019s journey is one of unwavering passion and dedication.<\\/p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he\\u2019s a visionary who believes in the extraordinary.<\\/p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#8B8B8B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"430da80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2760756\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(3208, 471, '_wp_page_template', 'elementor_header_footer'),
(3209, 471, '_elementor_edit_mode', 'builder'),
(3210, 471, '_elementor_template_type', 'wp-page'),
(3211, 471, '_elementor_version', '3.16.4'),
(3212, 471, '_elementor_pro_version', '3.16.2'),
(3213, 471, '_elementor_data', '[{\"id\":\"a286b48\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1e548fb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"8f68f94\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/about.jpeg\",\"id\":301,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"2c74fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"200\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5bf99d7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cde5248\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad6828c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"47ca214\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0982b89\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"78e69af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9fc731\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1ee9a1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d75dd93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"69fd541\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Vision\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ad5e922\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"b7b882e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20d7ba1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"403a2db\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"09af20d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7950ca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"805d9be\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"66eb7d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br \\/>We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.<\\/p><p>We exist to redefine luxury with a conscience.<\\/p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don\\u2019t just tell stories; they create legacies.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1a1c8b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e4d0ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"bb90926\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9899187\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/KV_IMG1.jpg\",\"id\":440,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a6745f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"55\",\"isLinked\":false}},\"elements\":[{\"id\":\"fd80b31\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kumar Verma\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"794cb40\",\"elType\":\"widget\",\"settings\":{\"title\":\"Founder & CEO\",\"header_size\":\"p\",\"title_color\":\"#505050\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bed21f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar\\u2019s journey is one of unwavering passion and dedication.<\\/p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he\\u2019s a visionary who believes in the extraordinary.<\\/p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#8B8B8B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"430da80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2760756\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(3217, 472, '_wp_page_template', 'elementor_header_footer'),
(3218, 472, '_elementor_edit_mode', 'builder'),
(3219, 472, '_elementor_template_type', 'wp-page'),
(3220, 472, '_elementor_version', '3.16.4'),
(3221, 472, '_elementor_pro_version', '3.16.2'),
(3222, 472, '_elementor_data', '[{\"id\":\"a286b48\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1e548fb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"8f68f94\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/about.jpeg\",\"id\":301,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"2c74fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"200\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5bf99d7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cde5248\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad6828c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"47ca214\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0982b89\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"78e69af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9fc731\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1ee9a1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d75dd93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"69fd541\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Vision\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ad5e922\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"b7b882e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20d7ba1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"403a2db\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"09af20d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7950ca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"805d9be\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"66eb7d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br \\/>We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.<\\/p><p>We exist to redefine luxury with a conscience.<\\/p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don\\u2019t just tell stories; they create legacies.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1a1c8b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e4d0ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"bb90926\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9899187\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/KV_IMG1.jpg\",\"id\":440,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a6745f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"55\",\"isLinked\":false}},\"elements\":[{\"id\":\"fd80b31\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kumar Verma\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"794cb40\",\"elType\":\"widget\",\"settings\":{\"title\":\"Founder & CEO\",\"header_size\":\"p\",\"title_color\":\"#505050\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bed21f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar\\u2019s journey is one of unwavering passion and dedication.<\\/p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he\\u2019s a visionary who believes in the extraordinary.<\\/p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#8B8B8B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"430da80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2760756\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(3225, 473, '_wp_page_template', 'elementor_header_footer'),
(3226, 473, '_elementor_edit_mode', 'builder'),
(3227, 473, '_elementor_template_type', 'wp-page'),
(3228, 473, '_elementor_version', '3.16.4'),
(3229, 473, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3230, 473, '_elementor_data', '[{\"id\":\"a286b48\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1e548fb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"8f68f94\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/about.jpeg\",\"id\":301,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"2c74fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"200\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5bf99d7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cde5248\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad6828c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"47ca214\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0982b89\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"78e69af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9fc731\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1ee9a1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d75dd93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"69fd541\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Vision\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ad5e922\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"b7b882e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20d7ba1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"403a2db\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"09af20d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7950ca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"805d9be\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"66eb7d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br \\/>We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.<\\/p><p>We exist to redefine luxury with a conscience.<\\/p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don\\u2019t just tell stories; they create legacies.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1a1c8b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e4d0ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"bb90926\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9899187\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/KV_IMG1.jpg\",\"id\":440,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a6745f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"55\",\"isLinked\":false}},\"elements\":[{\"id\":\"fd80b31\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kumar Verma\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"794cb40\",\"elType\":\"widget\",\"settings\":{\"title\":\"Founder & CEO\",\"header_size\":\"p\",\"title_color\":\"#505050\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bed21f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar\\u2019s journey is one of unwavering passion and dedication.<\\/p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he\\u2019s a visionary who believes in the extraordinary.<\\/p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#8B8B8B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"430da80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2760756\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(3233, 474, '_wp_page_template', 'elementor_header_footer'),
(3234, 474, '_elementor_edit_mode', 'builder'),
(3235, 474, '_elementor_template_type', 'wp-page'),
(3236, 474, '_elementor_version', '3.16.4'),
(3237, 474, '_elementor_pro_version', '3.16.2'),
(3238, 474, '_elementor_data', '[{\"id\":\"a286b48\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1e548fb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"8f68f94\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/about.jpeg\",\"id\":301,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"2c74fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"200\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5bf99d7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cde5248\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad6828c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"47ca214\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0982b89\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"78e69af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9fc731\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1ee9a1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d75dd93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"69fd541\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Vision\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ad5e922\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"b7b882e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20d7ba1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"403a2db\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"09af20d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7950ca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"805d9be\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"66eb7d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br \\/>We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.<\\/p><p>We exist to redefine luxury with a conscience.<\\/p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don\\u2019t just tell stories; they create legacies.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1a1c8b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e4d0ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"bb90926\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9899187\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/KV_IMG1.jpg\",\"id\":440,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a6745f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"55\",\"isLinked\":false}},\"elements\":[{\"id\":\"fd80b31\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kumar Verma\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"794cb40\",\"elType\":\"widget\",\"settings\":{\"title\":\"Founder & CEO\",\"header_size\":\"p\",\"title_color\":\"#505050\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bed21f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar\\u2019s journey is one of unwavering passion and dedication.<\\/p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he\\u2019s a visionary who believes in the extraordinary.<\\/p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#8B8B8B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"430da80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2760756\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(3256, 477, '_wp_page_template', 'elementor_header_footer'),
(3257, 477, '_elementor_edit_mode', 'builder'),
(3258, 477, '_elementor_template_type', 'wp-page'),
(3259, 477, '_elementor_version', '3.16.4'),
(3260, 477, '_elementor_pro_version', '3.16.2'),
(3261, 477, '_elementor_data', '[{\"id\":\"a286b48\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1e548fb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"8f68f94\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/about.jpeg\",\"id\":301,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"2c74fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"200\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5bf99d7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cde5248\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad6828c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"47ca214\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0982b89\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"78e69af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9fc731\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1ee9a1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d75dd93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"69fd541\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Vision\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ad5e922\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"b7b882e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20d7ba1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"403a2db\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"09af20d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7950ca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"805d9be\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"66eb7d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br \\/>We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.<\\/p><p>We exist to redefine luxury with a conscience.<\\/p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don\\u2019t just tell stories; they create legacies.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1a1c8b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e4d0ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"bb90926\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9899187\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/KV_IMG1.jpg\",\"id\":440,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a6745f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"55\",\"isLinked\":false}},\"elements\":[{\"id\":\"fd80b31\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kumar Verma\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"794cb40\",\"elType\":\"widget\",\"settings\":{\"title\":\"Founder & CEO\",\"header_size\":\"p\",\"title_color\":\"#505050\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bed21f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar\\u2019s journey is one of unwavering passion and dedication.<\\/p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he\\u2019s a visionary who believes in the extraordinary.<\\/p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#8B8B8B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"430da80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2760756\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(3263, 478, '_wp_page_template', 'elementor_header_footer'),
(3264, 478, '_elementor_edit_mode', 'builder'),
(3265, 478, '_elementor_template_type', 'wp-page'),
(3266, 478, '_elementor_version', '3.16.4'),
(3267, 478, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3268, 478, '_elementor_data', '[{\"id\":\"a286b48\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1e548fb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"8f68f94\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/about.jpeg\",\"id\":301,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"2c74fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"200\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5bf99d7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cde5248\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad6828c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"47ca214\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0982b89\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"78e69af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9fc731\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1ee9a1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d75dd93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"69fd541\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Vision\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ad5e922\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"b7b882e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20d7ba1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"403a2db\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"09af20d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7950ca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"805d9be\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"66eb7d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br \\/>We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.<\\/p><p>We exist to redefine luxury with a conscience.<\\/p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don\\u2019t just tell stories; they create legacies.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1a1c8b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e4d0ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"bb90926\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9899187\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/KV_IMG1.jpg\",\"id\":440,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a6745f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"55\",\"isLinked\":false}},\"elements\":[{\"id\":\"fd80b31\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kumar Verma\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"794cb40\",\"elType\":\"widget\",\"settings\":{\"title\":\"Founder & CEO\",\"header_size\":\"p\",\"title_color\":\"#505050\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bed21f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar\\u2019s journey is one of unwavering passion and dedication.<\\/p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he\\u2019s a visionary who believes in the extraordinary.<\\/p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#8B8B8B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"430da80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2760756\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(3270, 479, '_wp_page_template', 'elementor_header_footer'),
(3271, 479, '_elementor_edit_mode', 'builder'),
(3272, 479, '_elementor_template_type', 'wp-page'),
(3273, 479, '_elementor_version', '3.16.4'),
(3274, 479, '_elementor_pro_version', '3.16.2'),
(3275, 479, '_elementor_data', '[{\"id\":\"a286b48\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"1e548fb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"8f68f94\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/about.jpeg\",\"id\":301,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"2c74fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Benne\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"200\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5bf99d7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cde5248\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad6828c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"47ca214\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Benne\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0982b89\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"78e69af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f9fc731\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1ee9a1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d75dd93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"69fd541\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Vision\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Benne\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ad5e922\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"b7b882e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20d7ba1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"403a2db\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"09af20d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40},\"boxed_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7950ca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Benne\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"805d9be\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"66eb7d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br \\/>We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.<\\/p><p>We exist to redefine luxury with a conscience.<\\/p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don\\u2019t just tell stories; they create legacies.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#858585\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1a1c8b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e4d0ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"bb90926\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9899187\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/KV_IMG1.jpg\",\"id\":440,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a6745f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"55\",\"isLinked\":false}},\"elements\":[{\"id\":\"fd80b31\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kumar Verma\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Benne\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"794cb40\",\"elType\":\"widget\",\"settings\":{\"title\":\"Founder & CEO\",\"header_size\":\"p\",\"title_color\":\"#505050\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bed21f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 2\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar\\u2019s journey is one of unwavering passion and dedication.<\\/p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he\\u2019s a visionary who believes in the extraordinary.<\\/p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#8B8B8B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"430da80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2760756\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(3277, 54, '_elementor_controls_usage', 'a:5:{s:8:\"template\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:16:\"section_template\";a:1:{s:11:\"template_id\";i:2;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:19;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:7:{s:14:\"flex_direction\";i:11;s:13:\"content_width\";i:19;s:10:\"min_height\";i:1;s:20:\"flex_justify_content\";i:2;s:16:\"flex_align_items\";i:4;s:5:\"width\";i:6;s:11:\"boxed_width\";i:3;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:7;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:3:{s:10:\"_flex_size\";i:3;s:7:\"padding\";i:6;s:6:\"margin\";i:4;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:6;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:6;s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:20:\"typography_font_size\";i:6;s:22:\"typography_font_weight\";i:6;s:5:\"align\";i:3;s:25:\"typography_text_transform\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:4;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:5:\"width\";i:1;}}}}}'),
(3279, 480, '_wp_page_template', 'elementor_header_footer'),
(3280, 480, '_elementor_edit_mode', 'builder'),
(3281, 480, '_elementor_template_type', 'wp-page'),
(3282, 480, '_elementor_version', '3.16.4'),
(3283, 480, '_elementor_pro_version', '3.16.2'),
(3284, 480, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"bae3fd8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":70,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"339c2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coming Soon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(3287, 481, '_wp_page_template', 'elementor_header_footer'),
(3288, 481, '_elementor_edit_mode', 'builder'),
(3289, 481, '_elementor_template_type', 'wp-page'),
(3290, 481, '_elementor_version', '3.16.4'),
(3291, 481, '_elementor_pro_version', '3.16.2'),
(3292, 481, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"bae3fd8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":70,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"339c2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coming Soon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(3295, 482, '_wp_page_template', 'elementor_header_footer'),
(3296, 482, '_elementor_edit_mode', 'builder'),
(3297, 482, '_elementor_template_type', 'wp-page'),
(3298, 482, '_elementor_version', '3.16.4'),
(3299, 482, '_elementor_pro_version', '3.16.2'),
(3300, 482, '_elementor_data', '[{\"id\":\"4a3a5f8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"9c9b366\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"bae3fd8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":70,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"339c2e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coming Soon\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Benne\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2da455c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07a406e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(3303, 52, '_elementor_controls_usage', 'a:3:{s:8:\"template\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:16:\"section_template\";a:1:{s:11:\"template_id\";i:2;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:4:{s:14:\"flex_direction\";i:3;s:13:\"content_width\";i:3;s:10:\"min_height\";i:1;s:20:\"flex_justify_content\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:1:{s:7:\"padding\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:1;s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:1;}}}}}'),
(3304, 483, '_wp_page_template', 'elementor_header_footer'),
(3305, 483, '_elementor_edit_mode', 'builder'),
(3306, 483, '_elementor_template_type', 'wp-page'),
(3307, 483, '_elementor_version', '3.16.4'),
(3308, 483, '_elementor_pro_version', '3.16.2'),
(3309, 483, '_elementor_data', '[{\"id\":\"a34a8ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d0286c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"1557199\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bdaf07\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"14a5ad4\",\"elType\":\"widget\",\"settings\":{\"title\":\"CONTACT & ENQUIRIES\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"078192a\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"placeholder\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"bc471fc\"},{\"custom_id\":\"field_528cc56\",\"placeholder\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"528cc56\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"placeholder\":\"Email\",\"width\":\"50\",\"_id\":\"7da8978\"},{\"custom_id\":\"field_0097c8a\",\"placeholder\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"0097c8a\"},{\"custom_id\":\"field_54460c0\",\"field_label\":\"How did you hear about us?\",\"placeholder\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"54460c0\"},{\"custom_id\":\"field_2b6910f\",\"field_type\":\"select\",\"field_label\":\"Reason for enquiry?\",\"placeholder\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"field_options\":\"Please select one from the dropdown\",\"_id\":\"2b6910f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"button_align\":\"center\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"irovz794gpdq@sg2plzcpnl491724.prod.sin2.secureserver.net\",\"email_subject\":\"New message from &quot;Beyond Color&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@av-advertising.com\",\"email_from_name\":\"Beyond Color\",\"email_to_2\":\"irovz794gpdq@sg2plzcpnl491724.prod.sin2.secureserver.net\",\"email_subject_2\":\"New message from &quot;Beyond Color&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@av-advertising.com\",\"email_from_name_2\":\"Beyond Color\",\"email_reply_to_2\":\"irovz794gpdq@sg2plzcpnl491724.prod.sin2.secureserver.net\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Poppins\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"html_typography_typography\":\"custom\",\"html_typography_font_family\":\"Poppins\",\"html_typography_font_weight\":\"400\",\"field_background_color\":\"#E7E7E7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Poppins\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"capitalize\",\"button_background_color\":\"#000000\",\"previous_button_background_color\":\"#000000\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c3aa13\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58123bb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(3312, 484, '_wp_page_template', 'elementor_header_footer'),
(3313, 484, '_elementor_edit_mode', 'builder'),
(3314, 484, '_elementor_template_type', 'wp-page'),
(3315, 484, '_elementor_version', '3.16.4'),
(3316, 484, '_elementor_pro_version', '3.16.2'),
(3317, 484, '_elementor_data', '[{\"id\":\"a34a8ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d0286c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"1557199\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bdaf07\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"14a5ad4\",\"elType\":\"widget\",\"settings\":{\"title\":\"CONTACT & ENQUIRIES\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"078192a\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"placeholder\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"bc471fc\"},{\"custom_id\":\"field_528cc56\",\"placeholder\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"528cc56\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"placeholder\":\"Email\",\"width\":\"50\",\"_id\":\"7da8978\"},{\"custom_id\":\"field_0097c8a\",\"placeholder\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"0097c8a\"},{\"custom_id\":\"field_54460c0\",\"field_label\":\"How did you hear about us?\",\"placeholder\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"54460c0\"},{\"custom_id\":\"field_2b6910f\",\"field_type\":\"select\",\"field_label\":\"Reason for enquiry?\",\"placeholder\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"field_options\":\"Please select one from the dropdown\",\"_id\":\"2b6910f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"button_align\":\"center\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"irovz794gpdq@sg2plzcpnl491724.prod.sin2.secureserver.net\",\"email_subject\":\"New message from &quot;Beyond Color&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@av-advertising.com\",\"email_from_name\":\"Beyond Color\",\"email_to_2\":\"irovz794gpdq@sg2plzcpnl491724.prod.sin2.secureserver.net\",\"email_subject_2\":\"New message from &quot;Beyond Color&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@av-advertising.com\",\"email_from_name_2\":\"Beyond Color\",\"email_reply_to_2\":\"irovz794gpdq@sg2plzcpnl491724.prod.sin2.secureserver.net\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Poppins\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"html_typography_typography\":\"custom\",\"html_typography_font_family\":\"Poppins\",\"html_typography_font_weight\":\"400\",\"field_background_color\":\"#E7E7E7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Poppins\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"capitalize\",\"button_background_color\":\"#000000\",\"previous_button_background_color\":\"#000000\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c3aa13\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58123bb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(3320, 485, '_wp_page_template', 'elementor_header_footer'),
(3321, 485, '_elementor_edit_mode', 'builder'),
(3322, 485, '_elementor_template_type', 'wp-page'),
(3323, 485, '_elementor_version', '3.16.4'),
(3324, 485, '_elementor_pro_version', '3.16.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3325, 485, '_elementor_data', '[{\"id\":\"a34a8ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d0286c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"25\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false},{\"id\":\"1557199\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bdaf07\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"14a5ad4\",\"elType\":\"widget\",\"settings\":{\"title\":\"CONTACT & ENQUIRIES\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Benne\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"078192a\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"placeholder\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"bc471fc\"},{\"custom_id\":\"field_528cc56\",\"placeholder\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"528cc56\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"placeholder\":\"Email\",\"width\":\"50\",\"_id\":\"7da8978\"},{\"custom_id\":\"field_0097c8a\",\"placeholder\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"0097c8a\"},{\"custom_id\":\"field_54460c0\",\"field_label\":\"How did you hear about us?\",\"placeholder\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"54460c0\"},{\"custom_id\":\"field_2b6910f\",\"field_type\":\"select\",\"field_label\":\"Reason for enquiry?\",\"placeholder\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"field_options\":\"Please select one from the dropdown\",\"_id\":\"2b6910f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"button_align\":\"center\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"irovz794gpdq@sg2plzcpnl491724.prod.sin2.secureserver.net\",\"email_subject\":\"New message from &quot;Beyond Color&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@av-advertising.com\",\"email_from_name\":\"Beyond Color\",\"email_to_2\":\"irovz794gpdq@sg2plzcpnl491724.prod.sin2.secureserver.net\",\"email_subject_2\":\"New message from &quot;Beyond Color&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@av-advertising.com\",\"email_from_name_2\":\"Beyond Color\",\"email_reply_to_2\":\"irovz794gpdq@sg2plzcpnl491724.prod.sin2.secureserver.net\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Poppins\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"html_typography_typography\":\"custom\",\"html_typography_font_family\":\"Poppins\",\"html_typography_font_weight\":\"400\",\"field_background_color\":\"#E7E7E7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Poppins\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"capitalize\",\"button_background_color\":\"#000000\",\"previous_button_background_color\":\"#000000\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c3aa13\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58123bb\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(3328, 56, '_elementor_controls_usage', 'a:4:{s:8:\"template\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:16:\"section_template\";a:1:{s:11:\"template_id\";i:2;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:2:{s:14:\"flex_direction\";i:3;s:13:\"content_width\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:1:{s:7:\"padding\";i:3;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:5:\"align\";i:1;s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:19:\"section_form_fields\";a:2:{s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;}s:15:\"section_buttons\";a:3:{s:11:\"button_size\";i:1;s:12:\"button_align\";i:1;s:11:\"button_text\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_form_style\";a:9:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;s:27:\"label_typography_typography\";i:1;s:28:\"label_typography_font_family\";i:1;s:26:\"label_typography_font_size\";i:1;s:28:\"label_typography_font_weight\";i:1;s:26:\"html_typography_typography\";i:1;s:27:\"html_typography_font_family\";i:1;s:27:\"html_typography_font_weight\";i:1;}s:19:\"section_field_style\";a:3:{s:22:\"field_background_color\";i:1;s:18:\"field_border_width\";i:1;s:19:\"field_border_radius\";i:1;}s:20:\"section_button_style\";a:9:{s:28:\"button_typography_typography\";i:1;s:29:\"button_typography_font_family\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:23:\"button_background_color\";i:1;s:32:\"previous_button_background_color\";i:1;s:20:\"button_border_radius\";i:1;s:19:\"button_text_padding\";i:1;}}}}}'),
(3329, 486, '_elementor_edit_mode', 'builder'),
(3330, 486, '_elementor_template_type', 'wp-page'),
(3331, 486, '_elementor_version', '3.16.4'),
(3332, 486, '_wp_page_template', 'elementor_header_footer'),
(3333, 486, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"absolute\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"home-slider\"},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material2.jpeg\",\"id\":365,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material3.jpeg\",\"id\":364,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"},{\"id\":400,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery7.jpeg\"},{\"id\":401,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery6.jpeg\"},{\"id\":402,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery5.jpeg\"},{\"id\":403,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery4.jpeg\"},{\"id\":404,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery3.jpeg\"},{\"id\":405,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery1.jpeg\"}],\"image_stretch\":\"yes\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"autoplay_speed\":3000,\"arrows_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kithchens.jpeg\",\"id\":352,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/bathrooms.jpeg\",\"id\":351,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24.871,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.373,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/living-room.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/by-style-home.jpeg\",\"id\":354,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"flex_justify_content\":\"center\",\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"size\":12.355,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"size\":-2.998,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/showroom.jpeg\",\"id\":355,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":22.472,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.666,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram.jpeg\",\"id\":357,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":29.999,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.943,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br \\/><strong>Eco-friendly materials:<\\/strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.<\\/p><p><strong> Empowering artisans:<\\/strong> We\\u2019re more than just a luxury brand; we\\u2019re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(3335, 486, '_elementor_pro_version', '3.16.2'),
(3337, 487, '_elementor_edit_mode', 'builder'),
(3338, 487, '_elementor_template_type', 'wp-page'),
(3339, 487, '_elementor_version', '3.16.4'),
(3340, 487, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3341, 487, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"absolute\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"home-slider\"},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material2.jpeg\",\"id\":365,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material3.jpeg\",\"id\":364,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"},{\"id\":400,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery7.jpeg\"},{\"id\":401,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery6.jpeg\"},{\"id\":402,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery5.jpeg\"},{\"id\":403,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery4.jpeg\"},{\"id\":404,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery3.jpeg\"},{\"id\":405,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery1.jpeg\"}],\"image_stretch\":\"yes\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"autoplay_speed\":3000,\"arrows_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kithchens.jpeg\",\"id\":352,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/bathrooms.jpeg\",\"id\":351,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24.871,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.373,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/living-room.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/by-style-home.jpeg\",\"id\":354,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"flex_justify_content\":\"center\",\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"size\":12.355,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"size\":-2.998,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/showroom.jpeg\",\"id\":355,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":22.472,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.666,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram.jpeg\",\"id\":357,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":29.999,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.943,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons Light\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br \\/><strong>Eco-friendly materials:<\\/strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.<\\/p><p><strong> Empowering artisans:<\\/strong> We\\u2019re more than just a luxury brand; we\\u2019re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(3343, 487, '_elementor_pro_version', '3.16.2'),
(3345, 488, '_elementor_edit_mode', 'builder'),
(3346, 488, '_elementor_template_type', 'wp-page'),
(3347, 488, '_elementor_version', '3.16.4'),
(3348, 488, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3349, 488, '_elementor_data', '[{\"id\":\"b1d927d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"position\":\"absolute\",\"z_index\":2,\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9af7268\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.548},\"flex_direction\":\"row\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"4e28b9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Beyond-Color-Logo.png\",\"id\":62,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c22d131\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Inter\",\"menu_typography_font_weight\":\"400\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#000000\",\"color_menu_item_active\":\"#FFFFFF\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4b8c957\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e4591\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"home-slider\"},\"elements\":[{\"id\":\"26771e6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":32,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/Home-Banner.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"image_stretch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"e963c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Materials\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Benne\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2dabbfc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"83c7a66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"1f63e0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/09\\/material1.jpeg\",\"id\":43,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"801eb07\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8b07bc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material2.jpeg\",\"id\":365,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"00979af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"511f8bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/material3.jpeg\",\"id\":364,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e80cc1c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64de8fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Benne\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea1e60a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"31839aa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"carousel\":[{\"id\":125,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery-material.jpeg\"},{\"id\":126,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery2.jpeg\"},{\"id\":400,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery7.jpeg\"},{\"id\":401,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery6.jpeg\"},{\"id\":402,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery5.jpeg\"},{\"id\":403,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery4.jpeg\"},{\"id\":404,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery3.jpeg\"},{\"id\":405,\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/gallery1.jpeg\"}],\"image_stretch\":\"yes\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gallery_vertical_align\":\"flex-start\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"autoplay_speed\":3000,\"arrows_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e2d5817\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b8d7718\",\"elType\":\"widget\",\"settings\":{\"title\":\"Inspiration By Style\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Benne\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db3a7aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01d4040\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"db4eb17\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"05b6bdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/kithchens.jpeg\",\"id\":352,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e09ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kitchen\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":26,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53c3ed7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"378cf31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/bathrooms.jpeg\",\"id\":351,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2441a73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathroom\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24.871,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.373,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1d884b7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"d23a3f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/living-room.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e009d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Living Room\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":20,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c3e9c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"8c346d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/by-style-home.jpeg\",\"id\":354,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7aab2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":31,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":40.734,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF63\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b276015\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c38a99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Benne\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68e919e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81b9698\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"3da557a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"flex_justify_content\":\"center\",\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"a6ec3c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_position\":\"absolute\",\"_offset_y\":{\"size\":12.355,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"size\":-2.998,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd442a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/follow1.jpeg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"03c1588\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"501bf7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/showroom.jpeg\",\"id\":355,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88c6e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Visit Showroom\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":22.472,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.666,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e3d1cf5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"5d6d5b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/instagram.jpeg\",\"id\":357,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b12a8c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"The Seasons\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":29.999,\"unit\":\"%\"},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":44.943,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a8bc88f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"cee1f3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sustainability & Social Impact\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Benne\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07e016\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/av-advertising.com\\/beyondc\\/wp-content\\/uploads\\/2023\\/10\\/social.jpeg\",\"id\":149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"e46435d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"page\\\" title=\\\"Page 1\\\"><div class=\\\"section\\\"><div class=\\\"layoutArea\\\"><div class=\\\"column\\\"><p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br \\/><strong>Eco-friendly materials:<\\/strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.<\\/p><p><strong> Empowering artisans:<\\/strong> We\\u2019re more than just a luxury brand; we\\u2019re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9d9755\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f062c\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"188\"},\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}]'),
(3351, 488, '_elementor_pro_version', '3.16.2'),
(3353, 13, '_elementor_controls_usage', 'a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:11;s:10:\"image_size\";i:10;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:10;s:6:\"height\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:7:{s:13:\"content_width\";i:26;s:5:\"width\";i:1;s:14:\"flex_direction\";i:11;s:20:\"flex_justify_content\";i:3;s:8:\"flex_gap\";i:13;s:16:\"flex_align_items\";i:3;s:10:\"min_height\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:7:{s:10:\"_flex_size\";i:1;s:8:\"position\";i:1;s:7:\"z_index\";i:1;s:6:\"margin\";i:13;s:7:\"padding\";i:23;s:11:\"css_classes\";i:1;s:16:\"_flex_align_self\";i:3;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:10:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:25:\"menu_typography_font_size\";i:1;s:30:\"menu_typography_text_transform\";i:1;s:15:\"color_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:29:\"pointer_color_menu_item_hover\";i:1;s:22:\"color_menu_item_active\";i:1;s:13:\"pointer_width\";i:1;}}}}s:14:\"image-carousel\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:22:\"section_image_carousel\";a:6:{s:8:\"carousel\";i:2;s:14:\"thumbnail_size\";i:2;s:14:\"slides_to_show\";i:2;s:10:\"navigation\";i:1;s:13:\"image_stretch\";i:2;s:16:\"slides_to_scroll\";i:1;}s:26:\"section_additional_options\";a:1:{s:14:\"autoplay_speed\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}s:5:\"style\";a:2:{s:24:\"section_style_navigation\";a:2:{s:9:\"dots_size\";i:1;s:11:\"arrows_size\";i:1;}s:19:\"section_style_image\";a:4:{s:22:\"gallery_vertical_align\";i:1;s:13:\"image_spacing\";i:1;s:20:\"image_spacing_custom\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:11;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:11;s:11:\"title_color\";i:11;s:21:\"typography_typography\";i:11;s:22:\"typography_font_family\";i:11;s:20:\"typography_font_size\";i:11;s:22:\"typography_font_weight\";i:11;s:25:\"typography_text_transform\";i:11;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:7:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:11;s:16:\"_flex_align_self\";i:6;s:10:\"_flex_size\";i:6;s:9:\"_position\";i:6;s:9:\"_offset_x\";i:6;s:9:\"_offset_y\";i:6;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:6;s:17:\"_background_color\";i:6;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:1;s:9:\"_position\";i:1;s:9:\"_offset_y\";i:1;s:9:\"_offset_x\";i:1;s:7:\"_margin\";i:1;}}}}s:8:\"template\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:16:\"section_template\";a:1:{s:11:\"template_id\";i:1;}}}}}'),
(3370, 6, '_elementor_css', 'a:6:{s:4:\"time\";i:1739331158;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(3371, 13, '_elementor_page_assets', 'a:2:{s:6:\"styles\";a:5:{i:0;s:12:\"widget-image\";i:1;s:8:\"e-swiper\";i:2;s:21:\"widget-image-carousel\";i:3;s:14:\"widget-heading\";i:4;s:18:\"widget-text-editor\";}s:7:\"scripts\";a:2:{i:0;s:10:\"smartmenus\";i:1;s:6:\"swiper\";}}'),
(3372, 13, '_elementor_css', 'a:6:{s:4:\"time\";i:1739331159;s:5:\"fonts\";a:4:{i:0;s:5:\"Inter\";i:1;s:5:\"Benne\";i:4;s:11:\"The Seasons\";i:9;s:7:\"Poppins\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:1;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(3373, 188, '_elementor_css', 'a:6:{s:4:\"time\";i:1739331159;s:5:\"fonts\";a:2:{i:0;s:17:\"The Seasons Light\";i:1;s:7:\"Poppins\";}s:5:\"icons\";a:1:{i:0;s:3:\"svg\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(3374, 188, '_elementor_page_assets', 'a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"widget-image\";i:1;s:14:\"widget-heading\";i:2;s:19:\"widget-social-icons\";i:3;s:14:\"e-apple-webkit\";i:4;s:18:\"widget-text-editor\";}}'),
(3375, 159, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.1422 0C7.22573 0 0 7.22573 0 16.1422C0 22.9853 4.25357 28.8317 10.2602 31.181C10.1178 29.9085 9.99322 27.9419 10.3136 26.5448C10.6072 25.2811 12.2001 18.5182 12.2001 18.5182C12.2001 18.5182 11.7196 17.5482 11.7196 16.1244C11.7196 13.8819 13.0188 12.2001 14.6472 12.2001C16.0265 12.2001 16.6939 13.2323 16.6939 14.4693C16.6939 15.8485 15.813 17.9219 15.3502 19.853C14.9676 21.4636 16.16 22.7806 17.744 22.7806C20.6182 22.7806 22.8162 19.7551 22.8162 15.3947C22.8162 11.5238 20.0398 8.82749 16.0621 8.82749C11.4615 8.82749 8.7652 12.2713 8.7652 15.8308C8.7652 17.21 9.29912 18.705 9.95762 19.5148C10.0911 19.675 10.1 19.8174 10.0644 19.9775C9.94872 20.4848 9.66397 21.5882 9.61057 21.8107C9.54828 22.1043 9.37031 22.1666 9.06775 22.0242C7.04775 21.081 5.78414 18.1444 5.78414 15.7685C5.78414 10.6784 9.47709 5.99771 16.4537 5.99771C22.0509 5.99771 26.4024 9.98432 26.4024 15.3235C26.4024 20.6627 22.8963 25.3701 18.0287 25.3701C16.3914 25.3701 14.8519 24.5159 14.3358 23.5103C14.3358 23.5103 13.526 26.5893 13.3302 27.3545C12.9743 28.7605 11.9865 30.5136 11.328 31.5903C12.8408 32.053 14.4337 32.3111 16.1155 32.3111C25.032 32.3111 32.2577 25.0854 32.2577 16.1689C32.2844 7.22573 25.0587 0 16.1422 0Z\" fill=\"#BCBEC0\"></path></svg>'),
(3376, 158, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"33\" viewBox=\"0 0 34 33\" fill=\"none\"><path d=\"M17.0693 32.2932C25.9795 32.2932 33.2026 25.0701 33.2026 16.1599C33.2026 7.24974 25.9795 0.0266113 17.0693 0.0266113C8.15916 0.0266113 0.936035 7.24974 0.936035 16.1599C0.936035 25.0701 8.15916 32.2932 17.0693 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M18.315 13.9531C18.5819 13.6595 18.7955 13.3569 19.0714 13.0988C19.9078 12.3069 20.8956 11.9153 22.0524 11.9242C22.6842 11.9242 23.316 11.9776 23.93 12.1556C25.3271 12.556 26.1458 13.526 26.5285 14.8964C26.8221 15.9197 26.8755 16.9787 26.8755 18.0287C26.8755 20.2534 26.8755 22.487 26.8755 24.7116C26.8755 24.9163 26.8132 24.9786 26.6085 24.9697C25.4606 24.9608 24.3127 24.9608 23.1648 24.9697C22.9601 24.9697 22.9156 24.9074 22.9156 24.7205C22.9156 22.6026 22.9156 20.4758 22.9156 18.358C22.9156 17.824 22.88 17.299 22.7287 16.7829C22.4529 15.8307 21.7766 15.3502 20.7799 15.3947C19.4184 15.4659 18.7065 16.1422 18.5374 17.5215C18.493 17.8507 18.4752 18.18 18.4752 18.5181C18.4752 20.5826 18.4752 22.6382 18.4752 24.7027C18.4752 24.9074 18.4218 24.9697 18.2171 24.9697C17.0603 24.9608 15.9034 24.9608 14.7466 24.9697C14.5597 24.9697 14.5063 24.9252 14.5063 24.7294C14.5063 20.6449 14.5063 16.5604 14.5063 12.4848C14.5063 12.2802 14.5686 12.2357 14.7644 12.2357C15.8589 12.2357 16.9624 12.2446 18.0569 12.2357C18.2616 12.2357 18.315 12.298 18.3061 12.4937C18.2972 12.9832 18.3061 13.4726 18.3061 13.962L18.315 13.9531Z\" fill=\"#FDFDFD\"></path><path d=\"M12.0235 18.625C12.0235 20.645 12.0235 22.665 12.0235 24.685C12.0235 24.9074 11.9701 24.9786 11.7387 24.9786C10.5908 24.9697 9.44288 24.9697 8.29495 24.9786C8.10808 24.9786 8.05469 24.9341 8.05469 24.7473C8.05469 20.6539 8.05469 16.5694 8.05469 12.476C8.05469 12.3069 8.09918 12.2446 8.27715 12.2446C9.44288 12.2446 10.6086 12.2535 11.7654 12.2446C11.9879 12.2446 12.0235 12.3336 12.0146 12.5205C12.0146 14.5583 12.0146 16.5961 12.0146 18.6339L12.0235 18.625Z\" fill=\"#FDFDFD\"></path><path d=\"M12.3441 8.18675C12.3441 9.45926 11.3118 10.4915 10.0482 10.4915C8.80238 10.4915 7.76123 9.45926 7.76123 8.21345C7.76123 6.94984 8.79348 5.90869 10.0571 5.90869C11.3118 5.90869 12.3441 6.94094 12.3441 8.18675Z\" fill=\"#FDFDFD\"></path></svg>'),
(3377, 152, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"33\" viewBox=\"0 0 34 33\" fill=\"none\"><path d=\"M33.1293 16.1599C33.1293 7.25234 25.9125 0.0266113 17.0049 0.0266113C8.09731 0.0266113 0.871582 7.25234 0.871582 16.1599C0.871582 24.2132 6.77141 30.8872 14.4866 32.0975V20.8228H10.3932V16.1599H14.4866V12.6093C14.4866 8.56934 16.8981 6.33577 20.5821 6.33577C22.3441 6.33577 24.195 6.64723 24.195 6.64723V10.616H22.1572C20.155 10.616 19.5321 11.8619 19.5321 13.1344V16.1599H24.0081L23.2962 20.8228H19.541V32.0975C27.2562 30.8872 33.156 24.2132 33.156 16.1599H33.1293Z\" fill=\"#BCBEC0\"></path><path d=\"M23.2786 20.823L23.9905 16.1601H19.5144V13.1345C19.5144 11.862 20.1373 10.6162 22.1395 10.6162H24.1773V6.64739C24.1773 6.64739 22.3353 6.33594 20.5645 6.33594C16.8804 6.33594 14.4689 8.56951 14.4689 12.6095V16.1601H10.3755V20.823H14.4689V32.0976C15.2876 32.2222 16.1329 32.2934 16.9872 32.2934C17.8415 32.2934 18.6869 32.2222 19.5055 32.0976V20.823H23.2608H23.2786Z\" fill=\"white\"></path></svg>'),
(3378, 156, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"33\" viewBox=\"0 0 34 33\" fill=\"none\"><path d=\"M16.9321 32.2932C25.8423 32.2932 33.0654 25.0701 33.0654 16.1599C33.0654 7.24974 25.8423 0.0266113 16.9321 0.0266113C8.02196 0.0266113 0.798828 7.24974 0.798828 16.1599C0.798828 25.0701 8.02196 32.2932 16.9321 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M16.9318 7.83093C19.6459 7.83093 19.9663 7.83983 21.0341 7.89322C22.0219 7.93771 22.5647 8.10679 22.9206 8.24027C23.3923 8.42714 23.7304 8.64071 24.0864 8.99666C24.4423 9.3526 24.6648 9.69075 24.8427 10.1624C24.9851 10.5183 25.1453 11.0612 25.1898 12.0489C25.2343 13.1167 25.2521 13.4371 25.2521 16.1512C25.2521 18.8653 25.2432 19.1856 25.1898 20.2535C25.1453 21.2412 24.9762 21.7841 24.8427 22.14C24.6559 22.6116 24.4423 22.9498 24.0864 23.3057C23.7304 23.6617 23.3923 23.8841 22.9206 24.0621C22.5647 24.2045 22.0219 24.3647 21.0341 24.4092C19.9663 24.4537 19.6459 24.4715 16.9318 24.4715C14.2177 24.4715 13.8974 24.4626 12.8295 24.4092C11.8418 24.3647 11.299 24.1956 10.943 24.0621C10.4714 23.8752 10.1332 23.6617 9.77729 23.3057C9.42134 22.9498 9.19887 22.6116 9.0209 22.14C8.87852 21.7841 8.71834 21.2412 8.67385 20.2535C8.62935 19.1856 8.61155 18.8653 8.61155 16.1512C8.61155 13.4371 8.62046 13.1167 8.67385 12.0489C8.71834 11.0612 8.88742 10.5183 9.0209 10.1624C9.20777 9.69075 9.42134 9.3526 9.77729 8.99666C10.1332 8.64071 10.4714 8.41824 10.943 8.24027C11.299 8.09789 11.8418 7.93771 12.8295 7.89322C13.8974 7.84873 14.2177 7.83093 16.9318 7.83093ZM16.9318 5.9978C14.1732 5.9978 13.8262 6.0067 12.7406 6.06009C11.6638 6.11349 10.9252 6.28256 10.2756 6.53172C9.60821 6.78979 9.03869 7.13683 8.47808 7.70635C7.91746 8.26697 7.57042 8.83648 7.30346 9.50388C7.05429 10.1535 6.87631 10.8921 6.83181 11.9688C6.77842 13.0545 6.76953 13.4015 6.76953 16.1601C6.76953 18.9187 6.77842 19.2657 6.83181 20.3514C6.88521 21.4281 7.05429 22.1667 7.30346 22.8163C7.56152 23.4837 7.90856 24.0532 8.47808 24.6138C9.03869 25.1745 9.60821 25.5215 10.2756 25.7885C10.9252 26.0376 11.6638 26.2156 12.7406 26.2601C13.8262 26.3135 14.1732 26.3224 16.9318 26.3224C19.6904 26.3224 20.0375 26.3135 21.1231 26.2601C22.1998 26.2067 22.9384 26.0376 23.588 25.7885C24.2554 25.5304 24.8249 25.1834 25.3856 24.6138C25.9462 24.0532 26.2932 23.4837 26.5602 22.8163C26.8094 22.1667 26.9873 21.4281 27.0318 20.3514C27.0852 19.2657 27.0941 18.9187 27.0941 16.1601C27.0941 13.4015 27.0852 13.0545 27.0318 11.9688C26.9784 10.8921 26.8094 10.1535 26.5602 9.50388C26.3021 8.83648 25.9551 8.26697 25.3856 7.70635C24.8249 7.14573 24.2554 6.79868 23.588 6.53172C22.9384 6.28256 22.1998 6.10459 21.1231 6.06009C20.0375 6.0067 19.6904 5.9978 16.9318 5.9978Z\" fill=\"white\"></path><path d=\"M16.9319 10.9453C14.0487 10.9453 11.7173 13.2768 11.7173 16.1599C11.7173 19.0431 14.0487 21.3746 16.9319 21.3746C19.8151 21.3746 22.1465 19.0431 22.1465 16.1599C22.1465 13.2768 19.8151 10.9453 16.9319 10.9453ZM16.9319 19.5503C15.0632 19.5503 13.5504 18.0376 13.5504 16.1688C13.5504 14.3001 15.0632 12.7873 16.9319 12.7873C18.8006 12.7873 20.3134 14.3001 20.3134 16.1688C20.3134 18.0376 18.8006 19.5503 16.9319 19.5503Z\" fill=\"white\"></path><path d=\"M22.3602 11.9597C23.0335 11.9597 23.5794 11.4139 23.5794 10.7406C23.5794 10.0673 23.0335 9.52148 22.3602 9.52148C21.6869 9.52148 21.1411 10.0673 21.1411 10.7406C21.1411 11.4139 21.6869 11.9597 22.3602 11.9597Z\" fill=\"white\"></path></svg>'),
(3379, 155, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.8677 32.2932C25.7779 32.2932 33.001 25.0701 33.001 16.1599C33.001 7.24974 25.7779 0.0266113 16.8677 0.0266113C7.95751 0.0266113 0.734375 7.24974 0.734375 16.1599C0.734375 25.0701 7.95751 32.2932 16.8677 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M27.6173 16.1601C27.6173 14.8609 26.5672 13.8108 25.268 13.8108C24.6362 13.8108 24.0578 14.06 23.6395 14.4693C22.0289 13.3125 19.8131 12.5561 17.3482 12.476L18.416 7.43047L21.9132 8.17795C21.9577 9.06782 22.6874 9.77972 23.5862 9.77972C24.4849 9.77972 25.268 9.02333 25.268 8.09787C25.268 7.1724 24.5116 6.41602 23.5862 6.41602C22.9277 6.41602 22.3581 6.79866 22.0823 7.35038L18.1758 6.5228C18.069 6.4961 17.9533 6.5228 17.8554 6.58509C17.7575 6.64738 17.6952 6.74527 17.6774 6.85205L16.485 12.476C13.9845 12.5472 11.7331 13.2947 10.1047 14.4693C9.68643 14.06 9.10802 13.8108 8.47622 13.8108C7.17701 13.8108 6.12695 14.8609 6.12695 16.1601C6.12695 17.1122 6.69647 17.9398 7.51514 18.3046C7.47955 18.536 7.46175 18.7763 7.46175 19.0165C7.46175 22.6383 11.6708 25.566 16.8677 25.566C22.0645 25.566 26.2736 22.6294 26.2736 19.0165C26.2736 18.7763 26.2558 18.5449 26.2202 18.3135C27.0478 17.9487 27.6173 17.1211 27.6173 16.1601ZM11.484 17.8419C11.484 16.9165 12.2403 16.1601 13.1658 16.1601C14.0913 16.1601 14.8477 16.9165 14.8477 17.8419C14.8477 18.7674 14.0913 19.5238 13.1658 19.5238C12.2403 19.5238 11.484 18.7674 11.484 17.8419ZM20.8543 22.2824C19.7064 23.4303 17.5084 23.5193 16.8677 23.5193C16.227 23.5193 14.0201 23.4303 12.881 22.2824C12.712 22.1133 12.712 21.8374 12.881 21.6683C13.0501 21.4993 13.326 21.4993 13.4951 21.6683C14.2159 22.3891 15.7642 22.6472 16.8677 22.6472C17.9711 22.6472 19.5195 22.3891 20.2403 21.6683C20.4093 21.4993 20.6852 21.4993 20.8543 21.6683C21.0234 21.8374 21.0234 22.1133 20.8543 22.2824ZM20.5606 19.5238C19.6351 19.5238 18.8788 18.7674 18.8788 17.8419C18.8788 16.9165 19.6351 16.1601 20.5606 16.1601C21.4861 16.1601 22.2425 16.9165 22.2425 17.8419C22.2425 18.7674 21.4861 19.5238 20.5606 19.5238Z\" fill=\"white\"></path></svg>');

-- --------------------------------------------------------

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

CREATE TABLE `wp_posts` (
  `ID` bigint(20) UNSIGNED NOT NULL,
  `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 NOT NULL,
  `post_title` text NOT NULL,
  `post_excerpt` text NOT NULL,
  `post_status` varchar(20) NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) NOT NULL DEFAULT 'open',
  `post_password` varchar(255) NOT NULL DEFAULT '',
  `post_name` varchar(200) NOT NULL DEFAULT '',
  `to_ping` text NOT NULL,
  `pinged` text 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 NOT NULL,
  `post_parent` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `guid` varchar(255) NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT 0,
  `post_type` varchar(20) NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

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

INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1, 1, '2023-09-22 22:58:46', '2023-09-22 22:58:46', '<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->', 'Hello world!', '', 'publish', 'open', 'open', '', 'hello-world', '', '', '2023-09-22 22:58:46', '2023-09-22 22:58:46', '', 0, 'http://av-advertising.com/beyondc/?p=1', 0, 'post', '', 1),
(4, 0, '2023-09-22 22:58:46', '2023-09-22 22:58:46', '<!-- wp:page-list /-->', 'Navigation', '', 'publish', 'closed', 'closed', '', 'navigation', '', '', '2023-09-22 22:58:46', '2023-09-22 22:58:46', '', 0, 'https://av-advertising.com/beyondc/?p=4', 0, 'wp_navigation', '', 0),
(6, 1, '2023-09-25 05:49:17', '2023-09-25 05:49:17', '', 'Default Kit', '', 'publish', 'closed', 'closed', '', 'default-kit', '', '', '2023-10-06 07:11:25', '2023-10-06 07:11:25', '', 0, 'https://av-advertising.com/beyondc/?p=6', 0, 'elementor_library', '', 0),
(13, 1, '2023-09-25 08:07:36', '2023-09-25 08:07:36', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"442\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg 442w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-150x150.jpeg 150w\" sizes=\"(max-width: 442px) 100vw, 442px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery7.jpeg\" alt=\"gallery7\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery6.jpeg\" alt=\"gallery6\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery5.jpeg\" alt=\"gallery5\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery4.jpeg\" alt=\"gallery4\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery3.jpeg\" alt=\"gallery3\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery1.jpeg\" alt=\"gallery1\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"445\" height=\"445\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg 445w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-150x150.jpeg 150w\" sizes=\"(max-width: 445px) 100vw, 445px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br /><strong>Eco-friendly materials:</strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.</p><p><strong> Empowering artisans:</strong> We’re more than just a luxury brand; we’re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.</p>', 'Home', '', 'publish', 'closed', 'closed', '', 'home', '', '', '2023-10-06 12:35:29', '2023-10-06 12:35:29', '', 0, 'https://av-advertising.com/beyondc/?page_id=13', 0, 'page', '', 0),
(14, 1, '2023-09-25 08:07:36', '2023-09-25 08:07:36', '', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-09-25 08:07:36', '2023-09-25 08:07:36', '', 13, 'https://av-advertising.com/beyondc/?p=14', 0, 'revision', '', 0),
(15, 1, '2023-09-25 08:08:48', '2023-09-25 08:08:48', '', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-09-25 08:08:48', '2023-09-25 08:08:48', '', 13, 'https://av-advertising.com/beyondc/?p=15', 0, 'revision', '', 0),
(16, 1, '2023-09-25 08:08:48', '2023-09-25 08:08:48', '', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-09-25 08:08:48', '2023-09-25 08:08:48', '', 13, 'https://av-advertising.com/beyondc/?p=16', 0, 'revision', '', 0),
(17, 1, '2023-09-25 08:08:48', '2023-09-25 08:08:48', '', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-09-25 08:08:48', '2023-09-25 08:08:48', '', 13, 'https://av-advertising.com/beyondc/?p=17', 0, 'revision', '', 0),
(19, 1, '2023-09-25 08:12:52', '2023-09-25 08:12:52', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '6-revision-v1', '', '', '2023-09-25 08:12:52', '2023-09-25 08:12:52', '', 6, 'https://av-advertising.com/beyondc/?p=19', 0, 'revision', '', 0),
(21, 1, '2023-09-25 08:46:25', '2023-09-25 08:46:25', '', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-09-25 08:46:25', '2023-09-25 08:46:25', '', 13, 'https://av-advertising.com/beyondc/?p=21', 0, 'revision', '', 0),
(22, 1, '2023-09-25 08:46:25', '2023-09-25 08:46:25', '', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-09-25 08:46:25', '2023-09-25 08:46:25', '', 13, 'https://av-advertising.com/beyondc/?p=22', 0, 'revision', '', 0),
(23, 1, '2023-09-25 08:46:25', '2023-09-25 08:46:25', '', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-09-25 08:46:25', '2023-09-25 08:46:25', '', 13, 'https://av-advertising.com/beyondc/?p=23', 0, 'revision', '', 0),
(24, 1, '2023-10-02 04:28:54', '2023-09-25 08:47:27', ' ', '', '', 'publish', 'closed', 'closed', '', '24', '', '', '2023-10-02 04:28:54', '2023-10-02 04:28:54', '', 0, 'https://av-advertising.com/beyondc/?p=24', 1, 'nav_menu_item', '', 0),
(25, 1, '2023-09-25 08:50:10', '2023-09-25 08:50:10', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>													<a href=\"/beyondc/\">\n							<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />								</a>', 'Header', '', 'publish', 'closed', 'closed', '', 'header', '', '', '2023-10-04 05:52:15', '2023-10-04 05:52:15', '', 0, 'https://av-advertising.com/beyondc/?post_type=elementor_library&#038;p=25', 0, 'elementor_library', '', 0),
(26, 1, '2023-09-25 08:51:10', '2023-09-25 08:51:10', '', 'Header', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2023-09-25 08:51:10', '2023-09-25 08:51:10', '', 25, 'https://av-advertising.com/beyondc/?p=26', 0, 'revision', '', 0),
(27, 1, '2023-09-25 08:51:10', '2023-09-25 08:51:10', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Menu</h2>', 'Header', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2023-09-25 08:51:10', '2023-09-25 08:51:10', '', 25, 'https://av-advertising.com/beyondc/?p=27', 0, 'revision', '', 0),
(29, 1, '2023-09-25 09:12:31', '2023-09-25 09:12:31', '', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-09-25 09:12:31', '2023-09-25 09:12:31', '', 13, 'https://av-advertising.com/beyondc/?p=29', 0, 'revision', '', 0),
(30, 1, '2023-09-25 09:12:31', '2023-09-25 09:12:31', '', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-09-25 09:12:31', '2023-09-25 09:12:31', '', 13, 'https://av-advertising.com/beyondc/?p=30', 0, 'revision', '', 0),
(31, 1, '2023-09-25 09:12:32', '2023-09-25 09:12:32', '', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-09-25 09:12:32', '2023-09-25 09:12:32', '', 13, 'https://av-advertising.com/beyondc/?p=31', 0, 'revision', '', 0),
(32, 1, '2023-09-25 09:43:53', '2023-09-25 09:43:53', '', 'Home Banner', '', 'inherit', 'open', 'closed', '', 'home-banner', '', '', '2023-09-25 09:44:05', '2023-09-25 09:44:05', '', 13, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg', 0, 'attachment', 'image/jpeg', 0),
(33, 1, '2023-09-25 09:46:07', '2023-09-25 09:46:07', '', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-09-25 09:46:07', '2023-09-25 09:46:07', '', 13, 'https://av-advertising.com/beyondc/?p=33', 0, 'revision', '', 0),
(34, 1, '2023-09-25 09:46:07', '2023-09-25 09:46:07', '', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-09-25 09:46:07', '2023-09-25 09:46:07', '', 13, 'https://av-advertising.com/beyondc/?p=34', 0, 'revision', '', 0),
(35, 1, '2023-09-25 09:46:07', '2023-09-25 09:46:07', '', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-09-25 09:46:07', '2023-09-25 09:46:07', '', 13, 'https://av-advertising.com/beyondc/?p=35', 0, 'revision', '', 0),
(36, 1, '2023-09-25 09:47:51', '2023-09-25 09:47:51', '', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-09-25 09:47:51', '2023-09-25 09:47:51', '', 13, 'https://av-advertising.com/beyondc/?p=36', 0, 'revision', '', 0),
(37, 1, '2023-09-25 09:47:51', '2023-09-25 09:47:51', '', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-09-25 09:47:51', '2023-09-25 09:47:51', '', 13, 'https://av-advertising.com/beyondc/?p=37', 0, 'revision', '', 0),
(38, 1, '2023-09-25 09:47:51', '2023-09-25 09:47:51', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-09-25 09:47:51', '2023-09-25 09:47:51', '', 13, 'https://av-advertising.com/beyondc/?p=38', 0, 'revision', '', 0),
(39, 1, '2023-09-25 09:49:40', '2023-09-25 09:49:40', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-09-25 09:49:40', '2023-09-25 09:49:40', '', 13, 'https://av-advertising.com/beyondc/?p=39', 0, 'revision', '', 0),
(40, 1, '2023-09-25 09:49:40', '2023-09-25 09:49:40', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-09-25 09:49:40', '2023-09-25 09:49:40', '', 13, 'https://av-advertising.com/beyondc/?p=40', 0, 'revision', '', 0),
(41, 1, '2023-09-25 09:49:40', '2023-09-25 09:49:40', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-09-25 09:49:40', '2023-09-25 09:49:40', '', 13, 'https://av-advertising.com/beyondc/?p=41', 0, 'revision', '', 0),
(43, 1, '2023-09-25 10:27:47', '2023-09-25 10:27:47', '', 'material1', '', 'inherit', 'open', 'closed', '', 'material1', '', '', '2023-09-25 10:27:47', '2023-09-25 10:27:47', '', 13, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg', 0, 'attachment', 'image/jpeg', 0),
(45, 1, '2023-09-26 09:53:04', '2023-09-26 09:53:04', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-09-26 09:53:04', '2023-09-26 09:53:04', '', 13, 'https://av-advertising.com/beyondc/?p=45', 0, 'revision', '', 0),
(46, 1, '2023-09-26 09:53:05', '2023-09-26 09:53:05', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-09-26 09:53:05', '2023-09-26 09:53:05', '', 13, 'https://av-advertising.com/beyondc/?p=46', 0, 'revision', '', 0),
(47, 1, '2023-09-26 09:53:05', '2023-09-26 09:53:05', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Add Your Heading Text Here</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-09-26 09:53:05', '2023-09-26 09:53:05', '', 13, 'https://av-advertising.com/beyondc/?p=47', 0, 'revision', '', 0),
(50, 1, '2023-10-02 04:27:06', '2023-10-02 04:27:06', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"332\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material.jpeg 332w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-300x257.jpeg 300w\" sizes=\"(max-width: 332px) 100vw, 332px\" />															\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"332\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1.jpeg 332w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1-300x257.jpeg 300w\" sizes=\"(max-width: 332px) 100vw, 332px\" />															\n															<img width=\"333\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2-300x256.jpeg 300w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />', 'Materials', '', 'publish', 'closed', 'closed', '', 'materials', '', '', '2023-10-06 08:19:21', '2023-10-06 08:19:21', '', 0, 'https://av-advertising.com/beyondc/?page_id=50', 0, 'page', '', 0),
(51, 1, '2023-10-02 04:27:06', '2023-10-02 04:27:06', '', 'Materials', '', 'inherit', 'closed', 'closed', '', '50-revision-v1', '', '', '2023-10-02 04:27:06', '2023-10-02 04:27:06', '', 50, 'https://av-advertising.com/beyondc/?p=51', 0, 'revision', '', 0),
(52, 1, '2023-10-02 04:27:36', '2023-10-02 04:27:36', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Coming Soon</h2>', 'Projects', '', 'publish', 'closed', 'closed', '', 'projects', '', '', '2023-10-06 12:34:12', '2023-10-06 12:34:12', '', 0, 'https://av-advertising.com/beyondc/?page_id=52', 0, 'page', '', 0),
(53, 1, '2023-10-02 04:27:36', '2023-10-02 04:27:36', '', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-02 04:27:36', '2023-10-02 04:27:36', '', 52, 'https://av-advertising.com/beyondc/?p=53', 0, 'revision', '', 0),
(54, 1, '2023-10-02 04:27:57', '2023-10-02 04:27:57', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>About Us</h2>		\n			<h2>Our Mission</h2>		\n		<p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.</p>		\n			<h2>Our Vision</h2>		\n		<p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime</p>		\n			<h2>Why</h2>		\n		<p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br />We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.</p><p>We exist to redefine luxury with a conscience.</p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don’t just tell stories; they create legacies.</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"375\" height=\"450\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1.jpg 375w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1-250x300.jpg 250w\" sizes=\"(max-width: 375px) 100vw, 375px\" />															\n			<h2>Kumar Verma</h2>		\n			<p>Founder & CEO</p>		\n		<p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar’s journey is one of unwavering passion and dedication.</p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he’s a visionary who believes in the extraordinary.</p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.</p>', 'About Us', '', 'publish', 'closed', 'closed', '', 'about-us', '', '', '2023-10-06 12:27:17', '2023-10-06 12:27:17', '', 0, 'https://av-advertising.com/beyondc/?page_id=54', 0, 'page', '', 0),
(55, 1, '2023-10-02 04:27:57', '2023-10-02 04:27:57', '', 'About Us', '', 'inherit', 'closed', 'closed', '', '54-revision-v1', '', '', '2023-10-02 04:27:57', '2023-10-02 04:27:57', '', 54, 'https://av-advertising.com/beyondc/?p=55', 0, 'revision', '', 0),
(56, 1, '2023-10-02 04:28:20', '2023-10-02 04:28:20', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>CONTACT & ENQUIRIES</h2>', 'Contact Us', '', 'publish', 'closed', 'closed', '', 'contact-us', '', '', '2023-10-06 12:34:44', '2023-10-06 12:34:44', '', 0, 'https://av-advertising.com/beyondc/?page_id=56', 0, 'page', '', 0),
(57, 1, '2023-10-02 04:28:20', '2023-10-02 04:28:20', '', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '56-revision-v1', '', '', '2023-10-02 04:28:20', '2023-10-02 04:28:20', '', 56, 'https://av-advertising.com/beyondc/?p=57', 0, 'revision', '', 0),
(58, 1, '2023-10-02 04:28:54', '2023-10-02 04:28:54', ' ', '', '', 'publish', 'closed', 'closed', '', '58', '', '', '2023-10-02 04:28:54', '2023-10-02 04:28:54', '', 0, 'https://av-advertising.com/beyondc/?p=58', 5, 'nav_menu_item', '', 0),
(59, 1, '2023-10-02 04:28:54', '2023-10-02 04:28:54', ' ', '', '', 'publish', 'closed', 'closed', '', '59', '', '', '2023-10-02 04:28:54', '2023-10-02 04:28:54', '', 0, 'https://av-advertising.com/beyondc/?p=59', 4, 'nav_menu_item', '', 0),
(60, 1, '2023-10-02 04:28:54', '2023-10-02 04:28:54', ' ', '', '', 'publish', 'closed', 'closed', '', '60', '', '', '2023-10-02 04:28:54', '2023-10-02 04:28:54', '', 0, 'https://av-advertising.com/beyondc/?p=60', 3, 'nav_menu_item', '', 0),
(61, 1, '2023-10-02 04:28:54', '2023-10-02 04:28:54', ' ', '', '', 'publish', 'closed', 'closed', '', '61', '', '', '2023-10-02 04:28:54', '2023-10-02 04:28:54', '', 0, 'https://av-advertising.com/beyondc/?p=61', 2, 'nav_menu_item', '', 0),
(62, 1, '2023-10-02 04:31:15', '2023-10-02 04:31:15', '', 'Beyond Color Logo', '', 'inherit', 'open', 'closed', '', 'beyond-color-logo', '', '', '2023-10-02 04:31:15', '2023-10-02 04:31:15', '', 25, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png', 0, 'attachment', 'image/png', 0),
(63, 1, '2023-10-02 04:32:51', '2023-10-02 04:32:51', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />', 'Header', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2023-10-02 04:32:51', '2023-10-02 04:32:51', '', 25, 'https://av-advertising.com/beyondc/?p=63', 0, 'revision', '', 0),
(64, 1, '2023-10-02 04:35:57', '2023-10-02 04:35:57', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />', 'Header', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2023-10-02 04:35:57', '2023-10-02 04:35:57', '', 25, 'https://av-advertising.com/beyondc/?p=64', 0, 'revision', '', 0),
(65, 1, '2023-10-02 04:36:02', '2023-10-02 04:36:02', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Add Your Heading Text Here</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 04:36:02', '2023-10-02 04:36:02', '', 13, 'https://av-advertising.com/beyondc/?p=65', 0, 'revision', '', 0),
(66, 1, '2023-10-02 04:36:02', '2023-10-02 04:36:02', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Add Your Heading Text Here</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 04:36:02', '2023-10-02 04:36:02', '', 13, 'https://av-advertising.com/beyondc/?p=66', 0, 'revision', '', 0),
(67, 1, '2023-10-02 04:36:02', '2023-10-02 04:36:02', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Add Your Heading Text Here</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 04:36:02', '2023-10-02 04:36:02', '', 13, 'https://av-advertising.com/beyondc/?p=67', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(68, 1, '2023-10-02 04:36:35', '2023-10-02 04:36:35', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />', 'Header', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2023-10-02 04:36:35', '2023-10-02 04:36:35', '', 25, 'https://av-advertising.com/beyondc/?p=68', 0, 'revision', '', 0),
(69, 1, '2023-10-02 04:39:21', '2023-10-02 04:39:21', '', 'beyond-color-black', '', 'inherit', 'open', 'closed', '', 'beyond-color-black', '', '', '2023-10-02 04:39:29', '2023-10-02 04:39:29', '', 25, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png', 0, 'attachment', 'image/png', 0),
(70, 1, '2023-10-02 04:39:58', '2023-10-02 04:39:58', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>													<a href=\"/Home\">\n							<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />								</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2023-10-02 04:39:58', '2023-10-02 04:39:58', '', 25, 'https://av-advertising.com/beyondc/?p=70', 0, 'revision', '', 0),
(72, 1, '2023-10-02 04:42:03', '2023-10-02 04:42:03', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '6-revision-v1', '', '', '2023-10-02 04:42:03', '2023-10-02 04:42:03', '', 6, 'https://av-advertising.com/beyondc/?p=72', 0, 'revision', '', 0),
(73, 1, '2023-10-02 04:42:03', '2023-10-02 04:42:03', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '6-revision-v1', '', '', '2023-10-02 04:42:03', '2023-10-02 04:42:03', '', 6, 'https://av-advertising.com/beyondc/?p=73', 0, 'revision', '', 0),
(75, 1, '2023-10-02 04:43:38', '2023-10-02 04:43:38', '', 'favicon', '', 'inherit', 'open', 'closed', '', 'favicon', '', '', '2023-10-02 04:43:47', '2023-10-02 04:43:47', '', 6, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/09/favicon.png', 0, 'attachment', 'image/png', 0),
(76, 1, '2023-10-02 04:45:21', '2023-10-02 04:45:21', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Add Your Heading Text Here</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 04:45:21', '2023-10-02 04:45:21', '', 13, 'https://av-advertising.com/beyondc/?p=76', 0, 'revision', '', 0),
(77, 1, '2023-10-02 04:45:21', '2023-10-02 04:45:21', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Add Your Heading Text Here</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 04:45:21', '2023-10-02 04:45:21', '', 13, 'https://av-advertising.com/beyondc/?p=77', 0, 'revision', '', 0),
(78, 1, '2023-10-02 04:45:21', '2023-10-02 04:45:21', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Add Your Heading Text Here</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 04:45:21', '2023-10-02 04:45:21', '', 13, 'https://av-advertising.com/beyondc/?p=78', 0, 'revision', '', 0),
(79, 1, '2023-10-02 04:52:39', '2023-10-02 04:52:39', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Add Your Heading Text Here</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 04:52:39', '2023-10-02 04:52:39', '', 13, 'https://av-advertising.com/beyondc/?p=79', 0, 'revision', '', 0),
(80, 1, '2023-10-02 04:52:39', '2023-10-02 04:52:39', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Add Your Heading Text Here</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 04:52:39', '2023-10-02 04:52:39', '', 13, 'https://av-advertising.com/beyondc/?p=80', 0, 'revision', '', 0),
(81, 1, '2023-10-02 04:52:39', '2023-10-02 04:52:39', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 04:52:39', '2023-10-02 04:52:39', '', 13, 'https://av-advertising.com/beyondc/?p=81', 0, 'revision', '', 0),
(82, 1, '2023-10-02 04:53:20', '2023-10-02 04:53:20', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '6-revision-v1', '', '', '2023-10-02 04:53:20', '2023-10-02 04:53:20', '', 6, 'https://av-advertising.com/beyondc/?p=82', 0, 'revision', '', 0),
(86, 1, '2023-10-02 05:06:29', '2023-10-02 05:06:29', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 05:06:29', '2023-10-02 05:06:29', '', 13, 'https://av-advertising.com/beyondc/?p=86', 0, 'revision', '', 0),
(87, 1, '2023-10-02 05:06:29', '2023-10-02 05:06:29', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 05:06:29', '2023-10-02 05:06:29', '', 13, 'https://av-advertising.com/beyondc/?p=87', 0, 'revision', '', 0),
(88, 1, '2023-10-02 05:06:29', '2023-10-02 05:06:29', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 05:06:29', '2023-10-02 05:06:29', '', 13, 'https://av-advertising.com/beyondc/?p=88', 0, 'revision', '', 0),
(91, 1, '2023-10-02 05:15:32', '2023-10-02 05:15:32', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 05:15:32', '2023-10-02 05:15:32', '', 13, 'https://av-advertising.com/beyondc/?p=91', 0, 'revision', '', 0),
(92, 1, '2023-10-02 05:15:32', '2023-10-02 05:15:32', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 05:15:32', '2023-10-02 05:15:32', '', 13, 'https://av-advertising.com/beyondc/?p=92', 0, 'revision', '', 0),
(93, 1, '2023-10-02 05:15:32', '2023-10-02 05:15:32', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 05:15:32', '2023-10-02 05:15:32', '', 13, 'https://av-advertising.com/beyondc/?p=93', 0, 'revision', '', 0),
(95, 1, '2023-10-02 05:33:15', '2023-10-02 05:33:15', '', 'The Seasons Bold', '', 'inherit', 'open', 'closed', '', 'the-seasons-bold', '', '', '2023-10-02 05:33:15', '2023-10-02 05:33:15', '', 0, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/10/The-Seasons-Bold.ttf', 0, 'attachment', 'application/x-font-ttf', 0),
(96, 1, '2023-10-02 05:33:15', '2023-10-02 05:33:15', '', 'The Seasons Bold Italic', '', 'inherit', 'open', 'closed', '', 'the-seasons-bold-italic', '', '', '2023-10-02 05:33:15', '2023-10-02 05:33:15', '', 0, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/10/The-Seasons-Bold-Italic.ttf', 0, 'attachment', 'application/x-font-ttf', 0),
(97, 1, '2023-10-02 05:33:16', '2023-10-02 05:33:16', '', 'The Seasons Light', '', 'inherit', 'open', 'closed', '', 'the-seasons-light', '', '', '2023-10-02 05:33:16', '2023-10-02 05:33:16', '', 0, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/10/The-Seasons-Light.ttf', 0, 'attachment', 'application/x-font-ttf', 0),
(98, 1, '2023-10-02 05:33:16', '2023-10-02 05:33:16', '', 'The Seasons Light Italic', '', 'inherit', 'open', 'closed', '', 'the-seasons-light-italic', '', '', '2023-10-02 05:33:16', '2023-10-02 05:33:16', '', 0, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/10/The-Seasons-Light-Italic.ttf', 0, 'attachment', 'application/x-font-ttf', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(99, 1, '2023-10-02 05:33:17', '2023-10-02 05:33:17', '', 'The Seasons Regular', '', 'inherit', 'open', 'closed', '', 'the-seasons-regular', '', '', '2023-10-02 05:33:17', '2023-10-02 05:33:17', '', 0, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/10/The-Seasons-Regular.ttf', 0, 'attachment', 'application/x-font-ttf', 0),
(100, 1, '2023-10-02 05:33:17', '2023-10-02 05:33:17', '', 'The Seasons Italic', '', 'inherit', 'open', 'closed', '', 'the-seasons-italic', '', '', '2023-10-02 05:33:17', '2023-10-02 05:33:17', '', 0, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/10/The-Seasons-Italic.ttf', 0, 'attachment', 'application/x-font-ttf', 0),
(101, 1, '2023-10-02 05:34:37', '2023-10-02 05:34:37', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 05:34:37', '2023-10-02 05:34:37', '', 13, 'https://av-advertising.com/beyondc/?p=101', 0, 'revision', '', 0),
(102, 1, '2023-10-02 05:34:37', '2023-10-02 05:34:37', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 05:34:37', '2023-10-02 05:34:37', '', 13, 'https://av-advertising.com/beyondc/?p=102', 0, 'revision', '', 0),
(103, 1, '2023-10-02 05:34:37', '2023-10-02 05:34:37', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n			<h2>Gallery</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 05:34:37', '2023-10-02 05:34:37', '', 13, 'https://av-advertising.com/beyondc/?p=103', 0, 'revision', '', 0),
(104, 1, '2023-10-02 05:36:12', '2023-10-02 05:36:12', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n			<h2>Gallery</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 05:36:12', '2023-10-02 05:36:12', '', 13, 'https://av-advertising.com/beyondc/?p=104', 0, 'revision', '', 0),
(105, 1, '2023-10-02 05:36:12', '2023-10-02 05:36:12', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n			<h2>Gallery</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 05:36:12', '2023-10-02 05:36:12', '', 13, 'https://av-advertising.com/beyondc/?p=105', 0, 'revision', '', 0),
(106, 1, '2023-10-02 05:36:12', '2023-10-02 05:36:12', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n			<h2>Gallery</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 05:36:12', '2023-10-02 05:36:12', '', 13, 'https://av-advertising.com/beyondc/?p=106', 0, 'revision', '', 0),
(108, 1, '2023-10-02 05:42:06', '2023-10-02 05:42:06', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n			<h2>Gallery</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 05:42:06', '2023-10-02 05:42:06', '', 13, 'https://av-advertising.com/beyondc/?p=108', 0, 'revision', '', 0),
(109, 1, '2023-10-02 05:42:06', '2023-10-02 05:42:06', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n			<h2>Gallery</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 05:42:06', '2023-10-02 05:42:06', '', 13, 'https://av-advertising.com/beyondc/?p=109', 0, 'revision', '', 0),
(110, 1, '2023-10-02 05:42:06', '2023-10-02 05:42:06', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n			<h2>Gallery</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 05:42:06', '2023-10-02 05:42:06', '', 13, 'https://av-advertising.com/beyondc/?p=110', 0, 'revision', '', 0),
(111, 1, '2023-10-02 05:42:16', '2023-10-02 05:42:16', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n			<h2>Gallery</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 05:42:16', '2023-10-02 05:42:16', '', 13, 'https://av-advertising.com/beyondc/?p=111', 0, 'revision', '', 0),
(112, 1, '2023-10-02 05:42:17', '2023-10-02 05:42:17', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n			<h2>Gallery</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 05:42:17', '2023-10-02 05:42:17', '', 13, 'https://av-advertising.com/beyondc/?p=112', 0, 'revision', '', 0),
(113, 1, '2023-10-02 05:42:17', '2023-10-02 05:42:17', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n			<h2>Gallery</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 05:42:17', '2023-10-02 05:42:17', '', 13, 'https://av-advertising.com/beyondc/?p=113', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(117, 1, '2023-10-02 06:02:07', '2023-10-02 06:02:07', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n			<h2>Gallery</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 06:02:07', '2023-10-02 06:02:07', '', 13, 'https://av-advertising.com/beyondc/?p=117', 0, 'revision', '', 0),
(118, 1, '2023-10-02 06:02:07', '2023-10-02 06:02:07', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n			<h2>Gallery</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 06:02:07', '2023-10-02 06:02:07', '', 13, 'https://av-advertising.com/beyondc/?p=118', 0, 'revision', '', 0),
(119, 1, '2023-10-02 06:02:07', '2023-10-02 06:02:07', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n			<h2>Gallery</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 06:02:07', '2023-10-02 06:02:07', '', 13, 'https://av-advertising.com/beyondc/?p=119', 0, 'revision', '', 0),
(121, 1, '2023-10-02 06:02:46', '2023-10-02 06:02:46', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n			<h2>Gallery</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 06:02:46', '2023-10-02 06:02:46', '', 13, 'https://av-advertising.com/beyondc/?p=121', 0, 'revision', '', 0),
(122, 1, '2023-10-02 06:02:46', '2023-10-02 06:02:46', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n			<h2>Gallery</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 06:02:46', '2023-10-02 06:02:46', '', 13, 'https://av-advertising.com/beyondc/?p=122', 0, 'revision', '', 0),
(123, 1, '2023-10-02 06:02:46', '2023-10-02 06:02:46', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n			<h2>Gallery</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 06:02:46', '2023-10-02 06:02:46', '', 13, 'https://av-advertising.com/beyondc/?p=123', 0, 'revision', '', 0),
(125, 1, '2023-10-02 06:19:44', '2023-10-02 06:19:44', '', 'gallery-material', '', 'inherit', 'open', 'closed', '', 'gallery-material', '', '', '2023-10-02 06:19:44', '2023-10-02 06:19:44', '', 0, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg', 0, 'attachment', 'image/jpeg', 0),
(126, 1, '2023-10-02 06:19:44', '2023-10-02 06:19:44', '', 'gallery2', '', 'inherit', 'open', 'closed', '', 'gallery2', '', '', '2023-10-02 06:19:44', '2023-10-02 06:19:44', '', 0, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg', 0, 'attachment', 'image/jpeg', 0),
(127, 1, '2023-10-02 06:21:06', '2023-10-02 06:21:06', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n			<h2>Gallery</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 06:21:06', '2023-10-02 06:21:06', '', 13, 'https://av-advertising.com/beyondc/?p=127', 0, 'revision', '', 0),
(128, 1, '2023-10-02 06:21:06', '2023-10-02 06:21:06', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Material Cotton InNeon</h2>		\n			<h2>Gallery</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 06:21:06', '2023-10-02 06:21:06', '', 13, 'https://av-advertising.com/beyondc/?p=128', 0, 'revision', '', 0),
(129, 1, '2023-10-02 06:21:06', '2023-10-02 06:21:06', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 06:21:06', '2023-10-02 06:21:06', '', 13, 'https://av-advertising.com/beyondc/?p=129', 0, 'revision', '', 0),
(130, 1, '2023-10-02 06:21:21', '2023-10-02 06:21:21', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 06:21:21', '2023-10-02 06:21:21', '', 13, 'https://av-advertising.com/beyondc/?p=130', 0, 'revision', '', 0),
(131, 1, '2023-10-02 06:21:21', '2023-10-02 06:21:21', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 06:21:21', '2023-10-02 06:21:21', '', 13, 'https://av-advertising.com/beyondc/?p=131', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(132, 1, '2023-10-02 06:21:21', '2023-10-02 06:21:21', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 06:21:21', '2023-10-02 06:21:21', '', 13, 'https://av-advertising.com/beyondc/?p=132', 0, 'revision', '', 0),
(133, 1, '2023-10-02 06:23:01', '2023-10-02 06:23:01', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 06:23:01', '2023-10-02 06:23:01', '', 13, 'https://av-advertising.com/beyondc/?p=133', 0, 'revision', '', 0),
(134, 1, '2023-10-02 06:23:01', '2023-10-02 06:23:01', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 06:23:01', '2023-10-02 06:23:01', '', 13, 'https://av-advertising.com/beyondc/?p=134', 0, 'revision', '', 0),
(135, 1, '2023-10-02 06:23:02', '2023-10-02 06:23:02', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 06:23:02', '2023-10-02 06:23:02', '', 13, 'https://av-advertising.com/beyondc/?p=135', 0, 'revision', '', 0),
(136, 1, '2023-10-02 06:24:34', '2023-10-02 06:24:34', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 06:24:34', '2023-10-02 06:24:34', '', 13, 'https://av-advertising.com/beyondc/?p=136', 0, 'revision', '', 0),
(137, 1, '2023-10-02 06:24:34', '2023-10-02 06:24:34', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 06:24:34', '2023-10-02 06:24:34', '', 13, 'https://av-advertising.com/beyondc/?p=137', 0, 'revision', '', 0),
(138, 1, '2023-10-02 06:24:34', '2023-10-02 06:24:34', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 06:24:34', '2023-10-02 06:24:34', '', 13, 'https://av-advertising.com/beyondc/?p=138', 0, 'revision', '', 0),
(140, 1, '2023-10-02 06:35:40', '2023-10-02 06:35:40', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 06:35:40', '2023-10-02 06:35:40', '', 13, 'https://av-advertising.com/beyondc/?p=140', 0, 'revision', '', 0),
(141, 1, '2023-10-02 06:35:40', '2023-10-02 06:35:40', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 06:35:40', '2023-10-02 06:35:40', '', 13, 'https://av-advertising.com/beyondc/?p=141', 0, 'revision', '', 0),
(142, 1, '2023-10-02 06:35:40', '2023-10-02 06:35:40', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchens</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathrooms</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 06:35:40', '2023-10-02 06:35:40', '', 13, 'https://av-advertising.com/beyondc/?p=142', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(143, 1, '2023-10-02 06:37:07', '2023-10-02 06:37:07', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchens</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathrooms</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 06:37:07', '2023-10-02 06:37:07', '', 13, 'https://av-advertising.com/beyondc/?p=143', 0, 'revision', '', 0),
(144, 1, '2023-10-02 06:37:07', '2023-10-02 06:37:07', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchens</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathrooms</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 06:37:07', '2023-10-02 06:37:07', '', 13, 'https://av-advertising.com/beyondc/?p=144', 0, 'revision', '', 0),
(145, 1, '2023-10-02 06:37:07', '2023-10-02 06:37:07', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchens</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathrooms</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 06:37:07', '2023-10-02 06:37:07', '', 13, 'https://av-advertising.com/beyondc/?p=145', 0, 'revision', '', 0),
(146, 1, '2023-10-02 06:39:40', '2023-10-02 06:39:40', '', 'follow2', '', 'inherit', 'open', 'closed', '', 'follow2', '', '', '2023-10-02 06:39:40', '2023-10-02 06:39:40', '', 13, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow2.jpeg', 0, 'attachment', 'image/jpeg', 0),
(147, 1, '2023-10-02 06:39:43', '2023-10-02 06:39:43', '', 'follow1', '', 'inherit', 'open', 'closed', '', 'follow1', '', '', '2023-10-02 06:39:43', '2023-10-02 06:39:43', '', 13, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg', 0, 'attachment', 'image/jpeg', 0),
(149, 1, '2023-10-02 06:50:08', '2023-10-02 06:50:08', '', 'social', '', 'inherit', 'open', 'closed', '', 'social', '', '', '2023-10-02 06:50:08', '2023-10-02 06:50:08', '', 13, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/10/social.jpeg', 0, 'attachment', 'image/jpeg', 0),
(152, 1, '2023-10-02 07:06:00', '2023-10-02 07:06:00', '', 'facebook', '', 'inherit', 'open', 'closed', '', 'facebook', '', '', '2023-10-02 07:06:00', '2023-10-02 07:06:00', '', 13, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/10/facebook.svg', 0, 'attachment', 'image/svg+xml', 0),
(155, 1, '2023-10-02 07:06:37', '2023-10-02 07:06:37', '', 'reddit', '', 'inherit', 'open', 'closed', '', 'reddit', '', '', '2023-10-02 07:06:37', '2023-10-02 07:06:37', '', 13, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/10/reddit.svg', 0, 'attachment', 'image/svg+xml', 0),
(156, 1, '2023-10-02 07:06:37', '2023-10-02 07:06:37', '', 'instagram', '', 'inherit', 'open', 'closed', '', 'instagram-2', '', '', '2023-10-02 07:06:37', '2023-10-02 07:06:37', '', 13, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-1.svg', 0, 'attachment', 'image/svg+xml', 0),
(158, 1, '2023-10-02 07:06:38', '2023-10-02 07:06:38', '', 'linkedin', '', 'inherit', 'open', 'closed', '', 'linkedin-2', '', '', '2023-10-02 07:06:38', '2023-10-02 07:06:38', '', 13, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/10/linkedin-1.svg', 0, 'attachment', 'image/svg+xml', 0),
(159, 1, '2023-10-02 07:07:08', '2023-10-02 07:07:08', '', 'pinterest', '', 'inherit', 'open', 'closed', '', 'pinterest-2', '', '', '2023-10-02 07:07:08', '2023-10-02 07:07:08', '', 13, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/10/pinterest-1.svg', 0, 'attachment', 'image/svg+xml', 0),
(160, 1, '2023-10-02 07:43:35', '2023-10-02 07:43:35', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchens</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathrooms</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 07:43:35', '2023-10-02 07:43:35', '', 13, 'https://av-advertising.com/beyondc/?p=160', 0, 'revision', '', 0),
(161, 1, '2023-10-02 07:43:36', '2023-10-02 07:43:36', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchens</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathrooms</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 07:43:36', '2023-10-02 07:43:36', '', 13, 'https://av-advertising.com/beyondc/?p=161', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(162, 1, '2023-10-02 07:43:36', '2023-10-02 07:43:36', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n															<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<p>it’s time we inspire those who inspired us</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.8677 32.2932C25.7779 32.2932 33.001 25.0701 33.001 16.1599C33.001 7.24974 25.7779 0.0266113 16.8677 0.0266113C7.95751 0.0266113 0.734375 7.24974 0.734375 16.1599C0.734375 25.0701 7.95751 32.2932 16.8677 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M27.6173 16.1601C27.6173 14.8609 26.5672 13.8108 25.268 13.8108C24.6362 13.8108 24.0578 14.06 23.6395 14.4693C22.0289 13.3125 19.8131 12.5561 17.3482 12.476L18.416 7.43047L21.9132 8.17795C21.9577 9.06782 22.6874 9.77972 23.5862 9.77972C24.4849 9.77972 25.268 9.02333 25.268 8.09787C25.268 7.1724 24.5116 6.41602 23.5862 6.41602C22.9277 6.41602 22.3581 6.79866 22.0823 7.35038L18.1758 6.5228C18.069 6.4961 17.9533 6.5228 17.8554 6.58509C17.7575 6.64738 17.6952 6.74527 17.6774 6.85205L16.485 12.476C13.9845 12.5472 11.7331 13.2947 10.1047 14.4693C9.68643 14.06 9.10802 13.8108 8.47622 13.8108C7.17701 13.8108 6.12695 14.8609 6.12695 16.1601C6.12695 17.1122 6.69647 17.9398 7.51514 18.3046C7.47955 18.536 7.46175 18.7763 7.46175 19.0165C7.46175 22.6383 11.6708 25.566 16.8677 25.566C22.0645 25.566 26.2736 22.6294 26.2736 19.0165C26.2736 18.7763 26.2558 18.5449 26.2202 18.3135C27.0478 17.9487 27.6173 17.1211 27.6173 16.1601ZM11.484 17.8419C11.484 16.9165 12.2403 16.1601 13.1658 16.1601C14.0913 16.1601 14.8477 16.9165 14.8477 17.8419C14.8477 18.7674 14.0913 19.5238 13.1658 19.5238C12.2403 19.5238 11.484 18.7674 11.484 17.8419ZM20.8543 22.2824C19.7064 23.4303 17.5084 23.5193 16.8677 23.5193C16.227 23.5193 14.0201 23.4303 12.881 22.2824C12.712 22.1133 12.712 21.8374 12.881 21.6683C13.0501 21.4993 13.326 21.4993 13.4951 21.6683C14.2159 22.3891 15.7642 22.6472 16.8677 22.6472C17.9711 22.6472 19.5195 22.3891 20.2403 21.6683C20.4093 21.4993 20.6852 21.4993 20.8543 21.6683C21.0234 21.8374 21.0234 22.1133 20.8543 22.2824ZM20.5606 19.5238C19.6351 19.5238 18.8788 18.7674 18.8788 17.8419C18.8788 16.9165 19.6351 16.1601 20.5606 16.1601C21.4861 16.1601 22.2425 16.9165 22.2425 17.8419C22.2425 18.7674 21.4861 19.5238 20.5606 19.5238Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.1422 0C7.22573 0 0 7.22573 0 16.1422C0 22.9853 4.25357 28.8317 10.2602 31.181C10.1178 29.9085 9.99322 27.9419 10.3136 26.5448C10.6072 25.2811 12.2001 18.5182 12.2001 18.5182C12.2001 18.5182 11.7196 17.5482 11.7196 16.1244C11.7196 13.8819 13.0188 12.2001 14.6472 12.2001C16.0265 12.2001 16.6939 13.2323 16.6939 14.4693C16.6939 15.8485 15.813 17.9219 15.3502 19.853C14.9676 21.4636 16.16 22.7806 17.744 22.7806C20.6182 22.7806 22.8162 19.7551 22.8162 15.3947C22.8162 11.5238 20.0398 8.82749 16.0621 8.82749C11.4615 8.82749 8.7652 12.2713 8.7652 15.8308C8.7652 17.21 9.29912 18.705 9.95762 19.5148C10.0911 19.675 10.1 19.8174 10.0644 19.9775C9.94872 20.4848 9.66397 21.5882 9.61057 21.8107C9.54828 22.1043 9.37031 22.1666 9.06775 22.0242C7.04775 21.081 5.78414 18.1444 5.78414 15.7685C5.78414 10.6784 9.47709 5.99771 16.4537 5.99771C22.0509 5.99771 26.4024 9.98432 26.4024 15.3235C26.4024 20.6627 22.8963 25.3701 18.0287 25.3701C16.3914 25.3701 14.8519 24.5159 14.3358 23.5103C14.3358 23.5103 13.526 26.5893 13.3302 27.3545C12.9743 28.7605 11.9865 30.5136 11.328 31.5903C12.8408 32.053 14.4337 32.3111 16.1155 32.3111C25.032 32.3111 32.2577 25.0854 32.2577 16.1689C32.2844 7.22573 25.0587 0 16.1422 0Z\" fill=\"#BCBEC0\"></path></svg>					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 07:43:36', '2023-10-02 07:43:36', '', 13, 'https://av-advertising.com/beyondc/?p=162', 0, 'revision', '', 0),
(163, 1, '2023-10-02 08:14:27', '2023-10-02 08:14:27', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n															<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<p>it’s time we inspire those who inspired us</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.8677 32.2932C25.7779 32.2932 33.001 25.0701 33.001 16.1599C33.001 7.24974 25.7779 0.0266113 16.8677 0.0266113C7.95751 0.0266113 0.734375 7.24974 0.734375 16.1599C0.734375 25.0701 7.95751 32.2932 16.8677 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M27.6173 16.1601C27.6173 14.8609 26.5672 13.8108 25.268 13.8108C24.6362 13.8108 24.0578 14.06 23.6395 14.4693C22.0289 13.3125 19.8131 12.5561 17.3482 12.476L18.416 7.43047L21.9132 8.17795C21.9577 9.06782 22.6874 9.77972 23.5862 9.77972C24.4849 9.77972 25.268 9.02333 25.268 8.09787C25.268 7.1724 24.5116 6.41602 23.5862 6.41602C22.9277 6.41602 22.3581 6.79866 22.0823 7.35038L18.1758 6.5228C18.069 6.4961 17.9533 6.5228 17.8554 6.58509C17.7575 6.64738 17.6952 6.74527 17.6774 6.85205L16.485 12.476C13.9845 12.5472 11.7331 13.2947 10.1047 14.4693C9.68643 14.06 9.10802 13.8108 8.47622 13.8108C7.17701 13.8108 6.12695 14.8609 6.12695 16.1601C6.12695 17.1122 6.69647 17.9398 7.51514 18.3046C7.47955 18.536 7.46175 18.7763 7.46175 19.0165C7.46175 22.6383 11.6708 25.566 16.8677 25.566C22.0645 25.566 26.2736 22.6294 26.2736 19.0165C26.2736 18.7763 26.2558 18.5449 26.2202 18.3135C27.0478 17.9487 27.6173 17.1211 27.6173 16.1601ZM11.484 17.8419C11.484 16.9165 12.2403 16.1601 13.1658 16.1601C14.0913 16.1601 14.8477 16.9165 14.8477 17.8419C14.8477 18.7674 14.0913 19.5238 13.1658 19.5238C12.2403 19.5238 11.484 18.7674 11.484 17.8419ZM20.8543 22.2824C19.7064 23.4303 17.5084 23.5193 16.8677 23.5193C16.227 23.5193 14.0201 23.4303 12.881 22.2824C12.712 22.1133 12.712 21.8374 12.881 21.6683C13.0501 21.4993 13.326 21.4993 13.4951 21.6683C14.2159 22.3891 15.7642 22.6472 16.8677 22.6472C17.9711 22.6472 19.5195 22.3891 20.2403 21.6683C20.4093 21.4993 20.6852 21.4993 20.8543 21.6683C21.0234 21.8374 21.0234 22.1133 20.8543 22.2824ZM20.5606 19.5238C19.6351 19.5238 18.8788 18.7674 18.8788 17.8419C18.8788 16.9165 19.6351 16.1601 20.5606 16.1601C21.4861 16.1601 22.2425 16.9165 22.2425 17.8419C22.2425 18.7674 21.4861 19.5238 20.5606 19.5238Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.1422 0C7.22573 0 0 7.22573 0 16.1422C0 22.9853 4.25357 28.8317 10.2602 31.181C10.1178 29.9085 9.99322 27.9419 10.3136 26.5448C10.6072 25.2811 12.2001 18.5182 12.2001 18.5182C12.2001 18.5182 11.7196 17.5482 11.7196 16.1244C11.7196 13.8819 13.0188 12.2001 14.6472 12.2001C16.0265 12.2001 16.6939 13.2323 16.6939 14.4693C16.6939 15.8485 15.813 17.9219 15.3502 19.853C14.9676 21.4636 16.16 22.7806 17.744 22.7806C20.6182 22.7806 22.8162 19.7551 22.8162 15.3947C22.8162 11.5238 20.0398 8.82749 16.0621 8.82749C11.4615 8.82749 8.7652 12.2713 8.7652 15.8308C8.7652 17.21 9.29912 18.705 9.95762 19.5148C10.0911 19.675 10.1 19.8174 10.0644 19.9775C9.94872 20.4848 9.66397 21.5882 9.61057 21.8107C9.54828 22.1043 9.37031 22.1666 9.06775 22.0242C7.04775 21.081 5.78414 18.1444 5.78414 15.7685C5.78414 10.6784 9.47709 5.99771 16.4537 5.99771C22.0509 5.99771 26.4024 9.98432 26.4024 15.3235C26.4024 20.6627 22.8963 25.3701 18.0287 25.3701C16.3914 25.3701 14.8519 24.5159 14.3358 23.5103C14.3358 23.5103 13.526 26.5893 13.3302 27.3545C12.9743 28.7605 11.9865 30.5136 11.328 31.5903C12.8408 32.053 14.4337 32.3111 16.1155 32.3111C25.032 32.3111 32.2577 25.0854 32.2577 16.1689C32.2844 7.22573 25.0587 0 16.1422 0Z\" fill=\"#BCBEC0\"></path></svg>					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 08:14:27', '2023-10-02 08:14:27', '', 13, 'https://av-advertising.com/beyondc/?p=163', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(164, 1, '2023-10-02 08:14:27', '2023-10-02 08:14:27', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n															<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<p>it’s time we inspire those who inspired us</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.8677 32.2932C25.7779 32.2932 33.001 25.0701 33.001 16.1599C33.001 7.24974 25.7779 0.0266113 16.8677 0.0266113C7.95751 0.0266113 0.734375 7.24974 0.734375 16.1599C0.734375 25.0701 7.95751 32.2932 16.8677 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M27.6173 16.1601C27.6173 14.8609 26.5672 13.8108 25.268 13.8108C24.6362 13.8108 24.0578 14.06 23.6395 14.4693C22.0289 13.3125 19.8131 12.5561 17.3482 12.476L18.416 7.43047L21.9132 8.17795C21.9577 9.06782 22.6874 9.77972 23.5862 9.77972C24.4849 9.77972 25.268 9.02333 25.268 8.09787C25.268 7.1724 24.5116 6.41602 23.5862 6.41602C22.9277 6.41602 22.3581 6.79866 22.0823 7.35038L18.1758 6.5228C18.069 6.4961 17.9533 6.5228 17.8554 6.58509C17.7575 6.64738 17.6952 6.74527 17.6774 6.85205L16.485 12.476C13.9845 12.5472 11.7331 13.2947 10.1047 14.4693C9.68643 14.06 9.10802 13.8108 8.47622 13.8108C7.17701 13.8108 6.12695 14.8609 6.12695 16.1601C6.12695 17.1122 6.69647 17.9398 7.51514 18.3046C7.47955 18.536 7.46175 18.7763 7.46175 19.0165C7.46175 22.6383 11.6708 25.566 16.8677 25.566C22.0645 25.566 26.2736 22.6294 26.2736 19.0165C26.2736 18.7763 26.2558 18.5449 26.2202 18.3135C27.0478 17.9487 27.6173 17.1211 27.6173 16.1601ZM11.484 17.8419C11.484 16.9165 12.2403 16.1601 13.1658 16.1601C14.0913 16.1601 14.8477 16.9165 14.8477 17.8419C14.8477 18.7674 14.0913 19.5238 13.1658 19.5238C12.2403 19.5238 11.484 18.7674 11.484 17.8419ZM20.8543 22.2824C19.7064 23.4303 17.5084 23.5193 16.8677 23.5193C16.227 23.5193 14.0201 23.4303 12.881 22.2824C12.712 22.1133 12.712 21.8374 12.881 21.6683C13.0501 21.4993 13.326 21.4993 13.4951 21.6683C14.2159 22.3891 15.7642 22.6472 16.8677 22.6472C17.9711 22.6472 19.5195 22.3891 20.2403 21.6683C20.4093 21.4993 20.6852 21.4993 20.8543 21.6683C21.0234 21.8374 21.0234 22.1133 20.8543 22.2824ZM20.5606 19.5238C19.6351 19.5238 18.8788 18.7674 18.8788 17.8419C18.8788 16.9165 19.6351 16.1601 20.5606 16.1601C21.4861 16.1601 22.2425 16.9165 22.2425 17.8419C22.2425 18.7674 21.4861 19.5238 20.5606 19.5238Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.1422 0C7.22573 0 0 7.22573 0 16.1422C0 22.9853 4.25357 28.8317 10.2602 31.181C10.1178 29.9085 9.99322 27.9419 10.3136 26.5448C10.6072 25.2811 12.2001 18.5182 12.2001 18.5182C12.2001 18.5182 11.7196 17.5482 11.7196 16.1244C11.7196 13.8819 13.0188 12.2001 14.6472 12.2001C16.0265 12.2001 16.6939 13.2323 16.6939 14.4693C16.6939 15.8485 15.813 17.9219 15.3502 19.853C14.9676 21.4636 16.16 22.7806 17.744 22.7806C20.6182 22.7806 22.8162 19.7551 22.8162 15.3947C22.8162 11.5238 20.0398 8.82749 16.0621 8.82749C11.4615 8.82749 8.7652 12.2713 8.7652 15.8308C8.7652 17.21 9.29912 18.705 9.95762 19.5148C10.0911 19.675 10.1 19.8174 10.0644 19.9775C9.94872 20.4848 9.66397 21.5882 9.61057 21.8107C9.54828 22.1043 9.37031 22.1666 9.06775 22.0242C7.04775 21.081 5.78414 18.1444 5.78414 15.7685C5.78414 10.6784 9.47709 5.99771 16.4537 5.99771C22.0509 5.99771 26.4024 9.98432 26.4024 15.3235C26.4024 20.6627 22.8963 25.3701 18.0287 25.3701C16.3914 25.3701 14.8519 24.5159 14.3358 23.5103C14.3358 23.5103 13.526 26.5893 13.3302 27.3545C12.9743 28.7605 11.9865 30.5136 11.328 31.5903C12.8408 32.053 14.4337 32.3111 16.1155 32.3111C25.032 32.3111 32.2577 25.0854 32.2577 16.1689C32.2844 7.22573 25.0587 0 16.1422 0Z\" fill=\"#BCBEC0\"></path></svg>					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 08:14:27', '2023-10-02 08:14:27', '', 13, 'https://av-advertising.com/beyondc/?p=164', 0, 'revision', '', 0),
(165, 1, '2023-10-02 08:14:27', '2023-10-02 08:14:27', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n															<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<p>it’s time we inspire those who inspired us</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.8677 32.2932C25.7779 32.2932 33.001 25.0701 33.001 16.1599C33.001 7.24974 25.7779 0.0266113 16.8677 0.0266113C7.95751 0.0266113 0.734375 7.24974 0.734375 16.1599C0.734375 25.0701 7.95751 32.2932 16.8677 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M27.6173 16.1601C27.6173 14.8609 26.5672 13.8108 25.268 13.8108C24.6362 13.8108 24.0578 14.06 23.6395 14.4693C22.0289 13.3125 19.8131 12.5561 17.3482 12.476L18.416 7.43047L21.9132 8.17795C21.9577 9.06782 22.6874 9.77972 23.5862 9.77972C24.4849 9.77972 25.268 9.02333 25.268 8.09787C25.268 7.1724 24.5116 6.41602 23.5862 6.41602C22.9277 6.41602 22.3581 6.79866 22.0823 7.35038L18.1758 6.5228C18.069 6.4961 17.9533 6.5228 17.8554 6.58509C17.7575 6.64738 17.6952 6.74527 17.6774 6.85205L16.485 12.476C13.9845 12.5472 11.7331 13.2947 10.1047 14.4693C9.68643 14.06 9.10802 13.8108 8.47622 13.8108C7.17701 13.8108 6.12695 14.8609 6.12695 16.1601C6.12695 17.1122 6.69647 17.9398 7.51514 18.3046C7.47955 18.536 7.46175 18.7763 7.46175 19.0165C7.46175 22.6383 11.6708 25.566 16.8677 25.566C22.0645 25.566 26.2736 22.6294 26.2736 19.0165C26.2736 18.7763 26.2558 18.5449 26.2202 18.3135C27.0478 17.9487 27.6173 17.1211 27.6173 16.1601ZM11.484 17.8419C11.484 16.9165 12.2403 16.1601 13.1658 16.1601C14.0913 16.1601 14.8477 16.9165 14.8477 17.8419C14.8477 18.7674 14.0913 19.5238 13.1658 19.5238C12.2403 19.5238 11.484 18.7674 11.484 17.8419ZM20.8543 22.2824C19.7064 23.4303 17.5084 23.5193 16.8677 23.5193C16.227 23.5193 14.0201 23.4303 12.881 22.2824C12.712 22.1133 12.712 21.8374 12.881 21.6683C13.0501 21.4993 13.326 21.4993 13.4951 21.6683C14.2159 22.3891 15.7642 22.6472 16.8677 22.6472C17.9711 22.6472 19.5195 22.3891 20.2403 21.6683C20.4093 21.4993 20.6852 21.4993 20.8543 21.6683C21.0234 21.8374 21.0234 22.1133 20.8543 22.2824ZM20.5606 19.5238C19.6351 19.5238 18.8788 18.7674 18.8788 17.8419C18.8788 16.9165 19.6351 16.1601 20.5606 16.1601C21.4861 16.1601 22.2425 16.9165 22.2425 17.8419C22.2425 18.7674 21.4861 19.5238 20.5606 19.5238Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.1422 0C7.22573 0 0 7.22573 0 16.1422C0 22.9853 4.25357 28.8317 10.2602 31.181C10.1178 29.9085 9.99322 27.9419 10.3136 26.5448C10.6072 25.2811 12.2001 18.5182 12.2001 18.5182C12.2001 18.5182 11.7196 17.5482 11.7196 16.1244C11.7196 13.8819 13.0188 12.2001 14.6472 12.2001C16.0265 12.2001 16.6939 13.2323 16.6939 14.4693C16.6939 15.8485 15.813 17.9219 15.3502 19.853C14.9676 21.4636 16.16 22.7806 17.744 22.7806C20.6182 22.7806 22.8162 19.7551 22.8162 15.3947C22.8162 11.5238 20.0398 8.82749 16.0621 8.82749C11.4615 8.82749 8.7652 12.2713 8.7652 15.8308C8.7652 17.21 9.29912 18.705 9.95762 19.5148C10.0911 19.675 10.1 19.8174 10.0644 19.9775C9.94872 20.4848 9.66397 21.5882 9.61057 21.8107C9.54828 22.1043 9.37031 22.1666 9.06775 22.0242C7.04775 21.081 5.78414 18.1444 5.78414 15.7685C5.78414 10.6784 9.47709 5.99771 16.4537 5.99771C22.0509 5.99771 26.4024 9.98432 26.4024 15.3235C26.4024 20.6627 22.8963 25.3701 18.0287 25.3701C16.3914 25.3701 14.8519 24.5159 14.3358 23.5103C14.3358 23.5103 13.526 26.5893 13.3302 27.3545C12.9743 28.7605 11.9865 30.5136 11.328 31.5903C12.8408 32.053 14.4337 32.3111 16.1155 32.3111C25.032 32.3111 32.2577 25.0854 32.2577 16.1689C32.2844 7.22573 25.0587 0 16.1422 0Z\" fill=\"#BCBEC0\"></path></svg>					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 08:14:27', '2023-10-02 08:14:27', '', 13, 'https://av-advertising.com/beyondc/?p=165', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(166, 1, '2023-10-02 08:14:52', '2023-10-02 08:14:52', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n															<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<p>it’s time we inspire those who inspired us</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.8677 32.2932C25.7779 32.2932 33.001 25.0701 33.001 16.1599C33.001 7.24974 25.7779 0.0266113 16.8677 0.0266113C7.95751 0.0266113 0.734375 7.24974 0.734375 16.1599C0.734375 25.0701 7.95751 32.2932 16.8677 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M27.6173 16.1601C27.6173 14.8609 26.5672 13.8108 25.268 13.8108C24.6362 13.8108 24.0578 14.06 23.6395 14.4693C22.0289 13.3125 19.8131 12.5561 17.3482 12.476L18.416 7.43047L21.9132 8.17795C21.9577 9.06782 22.6874 9.77972 23.5862 9.77972C24.4849 9.77972 25.268 9.02333 25.268 8.09787C25.268 7.1724 24.5116 6.41602 23.5862 6.41602C22.9277 6.41602 22.3581 6.79866 22.0823 7.35038L18.1758 6.5228C18.069 6.4961 17.9533 6.5228 17.8554 6.58509C17.7575 6.64738 17.6952 6.74527 17.6774 6.85205L16.485 12.476C13.9845 12.5472 11.7331 13.2947 10.1047 14.4693C9.68643 14.06 9.10802 13.8108 8.47622 13.8108C7.17701 13.8108 6.12695 14.8609 6.12695 16.1601C6.12695 17.1122 6.69647 17.9398 7.51514 18.3046C7.47955 18.536 7.46175 18.7763 7.46175 19.0165C7.46175 22.6383 11.6708 25.566 16.8677 25.566C22.0645 25.566 26.2736 22.6294 26.2736 19.0165C26.2736 18.7763 26.2558 18.5449 26.2202 18.3135C27.0478 17.9487 27.6173 17.1211 27.6173 16.1601ZM11.484 17.8419C11.484 16.9165 12.2403 16.1601 13.1658 16.1601C14.0913 16.1601 14.8477 16.9165 14.8477 17.8419C14.8477 18.7674 14.0913 19.5238 13.1658 19.5238C12.2403 19.5238 11.484 18.7674 11.484 17.8419ZM20.8543 22.2824C19.7064 23.4303 17.5084 23.5193 16.8677 23.5193C16.227 23.5193 14.0201 23.4303 12.881 22.2824C12.712 22.1133 12.712 21.8374 12.881 21.6683C13.0501 21.4993 13.326 21.4993 13.4951 21.6683C14.2159 22.3891 15.7642 22.6472 16.8677 22.6472C17.9711 22.6472 19.5195 22.3891 20.2403 21.6683C20.4093 21.4993 20.6852 21.4993 20.8543 21.6683C21.0234 21.8374 21.0234 22.1133 20.8543 22.2824ZM20.5606 19.5238C19.6351 19.5238 18.8788 18.7674 18.8788 17.8419C18.8788 16.9165 19.6351 16.1601 20.5606 16.1601C21.4861 16.1601 22.2425 16.9165 22.2425 17.8419C22.2425 18.7674 21.4861 19.5238 20.5606 19.5238Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.1422 0C7.22573 0 0 7.22573 0 16.1422C0 22.9853 4.25357 28.8317 10.2602 31.181C10.1178 29.9085 9.99322 27.9419 10.3136 26.5448C10.6072 25.2811 12.2001 18.5182 12.2001 18.5182C12.2001 18.5182 11.7196 17.5482 11.7196 16.1244C11.7196 13.8819 13.0188 12.2001 14.6472 12.2001C16.0265 12.2001 16.6939 13.2323 16.6939 14.4693C16.6939 15.8485 15.813 17.9219 15.3502 19.853C14.9676 21.4636 16.16 22.7806 17.744 22.7806C20.6182 22.7806 22.8162 19.7551 22.8162 15.3947C22.8162 11.5238 20.0398 8.82749 16.0621 8.82749C11.4615 8.82749 8.7652 12.2713 8.7652 15.8308C8.7652 17.21 9.29912 18.705 9.95762 19.5148C10.0911 19.675 10.1 19.8174 10.0644 19.9775C9.94872 20.4848 9.66397 21.5882 9.61057 21.8107C9.54828 22.1043 9.37031 22.1666 9.06775 22.0242C7.04775 21.081 5.78414 18.1444 5.78414 15.7685C5.78414 10.6784 9.47709 5.99771 16.4537 5.99771C22.0509 5.99771 26.4024 9.98432 26.4024 15.3235C26.4024 20.6627 22.8963 25.3701 18.0287 25.3701C16.3914 25.3701 14.8519 24.5159 14.3358 23.5103C14.3358 23.5103 13.526 26.5893 13.3302 27.3545C12.9743 28.7605 11.9865 30.5136 11.328 31.5903C12.8408 32.053 14.4337 32.3111 16.1155 32.3111C25.032 32.3111 32.2577 25.0854 32.2577 16.1689C32.2844 7.22573 25.0587 0 16.1422 0Z\" fill=\"#BCBEC0\"></path></svg>					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 08:14:52', '2023-10-02 08:14:52', '', 13, 'https://av-advertising.com/beyondc/?p=166', 0, 'revision', '', 0),
(167, 1, '2023-10-02 08:14:52', '2023-10-02 08:14:52', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n															<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<p>it’s time we inspire those who inspired us</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.8677 32.2932C25.7779 32.2932 33.001 25.0701 33.001 16.1599C33.001 7.24974 25.7779 0.0266113 16.8677 0.0266113C7.95751 0.0266113 0.734375 7.24974 0.734375 16.1599C0.734375 25.0701 7.95751 32.2932 16.8677 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M27.6173 16.1601C27.6173 14.8609 26.5672 13.8108 25.268 13.8108C24.6362 13.8108 24.0578 14.06 23.6395 14.4693C22.0289 13.3125 19.8131 12.5561 17.3482 12.476L18.416 7.43047L21.9132 8.17795C21.9577 9.06782 22.6874 9.77972 23.5862 9.77972C24.4849 9.77972 25.268 9.02333 25.268 8.09787C25.268 7.1724 24.5116 6.41602 23.5862 6.41602C22.9277 6.41602 22.3581 6.79866 22.0823 7.35038L18.1758 6.5228C18.069 6.4961 17.9533 6.5228 17.8554 6.58509C17.7575 6.64738 17.6952 6.74527 17.6774 6.85205L16.485 12.476C13.9845 12.5472 11.7331 13.2947 10.1047 14.4693C9.68643 14.06 9.10802 13.8108 8.47622 13.8108C7.17701 13.8108 6.12695 14.8609 6.12695 16.1601C6.12695 17.1122 6.69647 17.9398 7.51514 18.3046C7.47955 18.536 7.46175 18.7763 7.46175 19.0165C7.46175 22.6383 11.6708 25.566 16.8677 25.566C22.0645 25.566 26.2736 22.6294 26.2736 19.0165C26.2736 18.7763 26.2558 18.5449 26.2202 18.3135C27.0478 17.9487 27.6173 17.1211 27.6173 16.1601ZM11.484 17.8419C11.484 16.9165 12.2403 16.1601 13.1658 16.1601C14.0913 16.1601 14.8477 16.9165 14.8477 17.8419C14.8477 18.7674 14.0913 19.5238 13.1658 19.5238C12.2403 19.5238 11.484 18.7674 11.484 17.8419ZM20.8543 22.2824C19.7064 23.4303 17.5084 23.5193 16.8677 23.5193C16.227 23.5193 14.0201 23.4303 12.881 22.2824C12.712 22.1133 12.712 21.8374 12.881 21.6683C13.0501 21.4993 13.326 21.4993 13.4951 21.6683C14.2159 22.3891 15.7642 22.6472 16.8677 22.6472C17.9711 22.6472 19.5195 22.3891 20.2403 21.6683C20.4093 21.4993 20.6852 21.4993 20.8543 21.6683C21.0234 21.8374 21.0234 22.1133 20.8543 22.2824ZM20.5606 19.5238C19.6351 19.5238 18.8788 18.7674 18.8788 17.8419C18.8788 16.9165 19.6351 16.1601 20.5606 16.1601C21.4861 16.1601 22.2425 16.9165 22.2425 17.8419C22.2425 18.7674 21.4861 19.5238 20.5606 19.5238Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.1422 0C7.22573 0 0 7.22573 0 16.1422C0 22.9853 4.25357 28.8317 10.2602 31.181C10.1178 29.9085 9.99322 27.9419 10.3136 26.5448C10.6072 25.2811 12.2001 18.5182 12.2001 18.5182C12.2001 18.5182 11.7196 17.5482 11.7196 16.1244C11.7196 13.8819 13.0188 12.2001 14.6472 12.2001C16.0265 12.2001 16.6939 13.2323 16.6939 14.4693C16.6939 15.8485 15.813 17.9219 15.3502 19.853C14.9676 21.4636 16.16 22.7806 17.744 22.7806C20.6182 22.7806 22.8162 19.7551 22.8162 15.3947C22.8162 11.5238 20.0398 8.82749 16.0621 8.82749C11.4615 8.82749 8.7652 12.2713 8.7652 15.8308C8.7652 17.21 9.29912 18.705 9.95762 19.5148C10.0911 19.675 10.1 19.8174 10.0644 19.9775C9.94872 20.4848 9.66397 21.5882 9.61057 21.8107C9.54828 22.1043 9.37031 22.1666 9.06775 22.0242C7.04775 21.081 5.78414 18.1444 5.78414 15.7685C5.78414 10.6784 9.47709 5.99771 16.4537 5.99771C22.0509 5.99771 26.4024 9.98432 26.4024 15.3235C26.4024 20.6627 22.8963 25.3701 18.0287 25.3701C16.3914 25.3701 14.8519 24.5159 14.3358 23.5103C14.3358 23.5103 13.526 26.5893 13.3302 27.3545C12.9743 28.7605 11.9865 30.5136 11.328 31.5903C12.8408 32.053 14.4337 32.3111 16.1155 32.3111C25.032 32.3111 32.2577 25.0854 32.2577 16.1689C32.2844 7.22573 25.0587 0 16.1422 0Z\" fill=\"#BCBEC0\"></path></svg>					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 08:14:52', '2023-10-02 08:14:52', '', 13, 'https://av-advertising.com/beyondc/?p=167', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(168, 1, '2023-10-02 08:14:52', '2023-10-02 08:14:52', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n															<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<p>it’s time we inspire those who inspired us</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.8677 32.2932C25.7779 32.2932 33.001 25.0701 33.001 16.1599C33.001 7.24974 25.7779 0.0266113 16.8677 0.0266113C7.95751 0.0266113 0.734375 7.24974 0.734375 16.1599C0.734375 25.0701 7.95751 32.2932 16.8677 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M27.6173 16.1601C27.6173 14.8609 26.5672 13.8108 25.268 13.8108C24.6362 13.8108 24.0578 14.06 23.6395 14.4693C22.0289 13.3125 19.8131 12.5561 17.3482 12.476L18.416 7.43047L21.9132 8.17795C21.9577 9.06782 22.6874 9.77972 23.5862 9.77972C24.4849 9.77972 25.268 9.02333 25.268 8.09787C25.268 7.1724 24.5116 6.41602 23.5862 6.41602C22.9277 6.41602 22.3581 6.79866 22.0823 7.35038L18.1758 6.5228C18.069 6.4961 17.9533 6.5228 17.8554 6.58509C17.7575 6.64738 17.6952 6.74527 17.6774 6.85205L16.485 12.476C13.9845 12.5472 11.7331 13.2947 10.1047 14.4693C9.68643 14.06 9.10802 13.8108 8.47622 13.8108C7.17701 13.8108 6.12695 14.8609 6.12695 16.1601C6.12695 17.1122 6.69647 17.9398 7.51514 18.3046C7.47955 18.536 7.46175 18.7763 7.46175 19.0165C7.46175 22.6383 11.6708 25.566 16.8677 25.566C22.0645 25.566 26.2736 22.6294 26.2736 19.0165C26.2736 18.7763 26.2558 18.5449 26.2202 18.3135C27.0478 17.9487 27.6173 17.1211 27.6173 16.1601ZM11.484 17.8419C11.484 16.9165 12.2403 16.1601 13.1658 16.1601C14.0913 16.1601 14.8477 16.9165 14.8477 17.8419C14.8477 18.7674 14.0913 19.5238 13.1658 19.5238C12.2403 19.5238 11.484 18.7674 11.484 17.8419ZM20.8543 22.2824C19.7064 23.4303 17.5084 23.5193 16.8677 23.5193C16.227 23.5193 14.0201 23.4303 12.881 22.2824C12.712 22.1133 12.712 21.8374 12.881 21.6683C13.0501 21.4993 13.326 21.4993 13.4951 21.6683C14.2159 22.3891 15.7642 22.6472 16.8677 22.6472C17.9711 22.6472 19.5195 22.3891 20.2403 21.6683C20.4093 21.4993 20.6852 21.4993 20.8543 21.6683C21.0234 21.8374 21.0234 22.1133 20.8543 22.2824ZM20.5606 19.5238C19.6351 19.5238 18.8788 18.7674 18.8788 17.8419C18.8788 16.9165 19.6351 16.1601 20.5606 16.1601C21.4861 16.1601 22.2425 16.9165 22.2425 17.8419C22.2425 18.7674 21.4861 19.5238 20.5606 19.5238Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.1422 0C7.22573 0 0 7.22573 0 16.1422C0 22.9853 4.25357 28.8317 10.2602 31.181C10.1178 29.9085 9.99322 27.9419 10.3136 26.5448C10.6072 25.2811 12.2001 18.5182 12.2001 18.5182C12.2001 18.5182 11.7196 17.5482 11.7196 16.1244C11.7196 13.8819 13.0188 12.2001 14.6472 12.2001C16.0265 12.2001 16.6939 13.2323 16.6939 14.4693C16.6939 15.8485 15.813 17.9219 15.3502 19.853C14.9676 21.4636 16.16 22.7806 17.744 22.7806C20.6182 22.7806 22.8162 19.7551 22.8162 15.3947C22.8162 11.5238 20.0398 8.82749 16.0621 8.82749C11.4615 8.82749 8.7652 12.2713 8.7652 15.8308C8.7652 17.21 9.29912 18.705 9.95762 19.5148C10.0911 19.675 10.1 19.8174 10.0644 19.9775C9.94872 20.4848 9.66397 21.5882 9.61057 21.8107C9.54828 22.1043 9.37031 22.1666 9.06775 22.0242C7.04775 21.081 5.78414 18.1444 5.78414 15.7685C5.78414 10.6784 9.47709 5.99771 16.4537 5.99771C22.0509 5.99771 26.4024 9.98432 26.4024 15.3235C26.4024 20.6627 22.8963 25.3701 18.0287 25.3701C16.3914 25.3701 14.8519 24.5159 14.3358 23.5103C14.3358 23.5103 13.526 26.5893 13.3302 27.3545C12.9743 28.7605 11.9865 30.5136 11.328 31.5903C12.8408 32.053 14.4337 32.3111 16.1155 32.3111C25.032 32.3111 32.2577 25.0854 32.2577 16.1689C32.2844 7.22573 25.0587 0 16.1422 0Z\" fill=\"#BCBEC0\"></path></svg>					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 08:14:52', '2023-10-02 08:14:52', '', 13, 'https://av-advertising.com/beyondc/?p=168', 0, 'revision', '', 0),
(169, 1, '2023-10-02 08:15:47', '2023-10-02 08:15:47', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n															<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<p>it’s time we inspire those who inspired us</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.8677 32.2932C25.7779 32.2932 33.001 25.0701 33.001 16.1599C33.001 7.24974 25.7779 0.0266113 16.8677 0.0266113C7.95751 0.0266113 0.734375 7.24974 0.734375 16.1599C0.734375 25.0701 7.95751 32.2932 16.8677 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M27.6173 16.1601C27.6173 14.8609 26.5672 13.8108 25.268 13.8108C24.6362 13.8108 24.0578 14.06 23.6395 14.4693C22.0289 13.3125 19.8131 12.5561 17.3482 12.476L18.416 7.43047L21.9132 8.17795C21.9577 9.06782 22.6874 9.77972 23.5862 9.77972C24.4849 9.77972 25.268 9.02333 25.268 8.09787C25.268 7.1724 24.5116 6.41602 23.5862 6.41602C22.9277 6.41602 22.3581 6.79866 22.0823 7.35038L18.1758 6.5228C18.069 6.4961 17.9533 6.5228 17.8554 6.58509C17.7575 6.64738 17.6952 6.74527 17.6774 6.85205L16.485 12.476C13.9845 12.5472 11.7331 13.2947 10.1047 14.4693C9.68643 14.06 9.10802 13.8108 8.47622 13.8108C7.17701 13.8108 6.12695 14.8609 6.12695 16.1601C6.12695 17.1122 6.69647 17.9398 7.51514 18.3046C7.47955 18.536 7.46175 18.7763 7.46175 19.0165C7.46175 22.6383 11.6708 25.566 16.8677 25.566C22.0645 25.566 26.2736 22.6294 26.2736 19.0165C26.2736 18.7763 26.2558 18.5449 26.2202 18.3135C27.0478 17.9487 27.6173 17.1211 27.6173 16.1601ZM11.484 17.8419C11.484 16.9165 12.2403 16.1601 13.1658 16.1601C14.0913 16.1601 14.8477 16.9165 14.8477 17.8419C14.8477 18.7674 14.0913 19.5238 13.1658 19.5238C12.2403 19.5238 11.484 18.7674 11.484 17.8419ZM20.8543 22.2824C19.7064 23.4303 17.5084 23.5193 16.8677 23.5193C16.227 23.5193 14.0201 23.4303 12.881 22.2824C12.712 22.1133 12.712 21.8374 12.881 21.6683C13.0501 21.4993 13.326 21.4993 13.4951 21.6683C14.2159 22.3891 15.7642 22.6472 16.8677 22.6472C17.9711 22.6472 19.5195 22.3891 20.2403 21.6683C20.4093 21.4993 20.6852 21.4993 20.8543 21.6683C21.0234 21.8374 21.0234 22.1133 20.8543 22.2824ZM20.5606 19.5238C19.6351 19.5238 18.8788 18.7674 18.8788 17.8419C18.8788 16.9165 19.6351 16.1601 20.5606 16.1601C21.4861 16.1601 22.2425 16.9165 22.2425 17.8419C22.2425 18.7674 21.4861 19.5238 20.5606 19.5238Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.1422 0C7.22573 0 0 7.22573 0 16.1422C0 22.9853 4.25357 28.8317 10.2602 31.181C10.1178 29.9085 9.99322 27.9419 10.3136 26.5448C10.6072 25.2811 12.2001 18.5182 12.2001 18.5182C12.2001 18.5182 11.7196 17.5482 11.7196 16.1244C11.7196 13.8819 13.0188 12.2001 14.6472 12.2001C16.0265 12.2001 16.6939 13.2323 16.6939 14.4693C16.6939 15.8485 15.813 17.9219 15.3502 19.853C14.9676 21.4636 16.16 22.7806 17.744 22.7806C20.6182 22.7806 22.8162 19.7551 22.8162 15.3947C22.8162 11.5238 20.0398 8.82749 16.0621 8.82749C11.4615 8.82749 8.7652 12.2713 8.7652 15.8308C8.7652 17.21 9.29912 18.705 9.95762 19.5148C10.0911 19.675 10.1 19.8174 10.0644 19.9775C9.94872 20.4848 9.66397 21.5882 9.61057 21.8107C9.54828 22.1043 9.37031 22.1666 9.06775 22.0242C7.04775 21.081 5.78414 18.1444 5.78414 15.7685C5.78414 10.6784 9.47709 5.99771 16.4537 5.99771C22.0509 5.99771 26.4024 9.98432 26.4024 15.3235C26.4024 20.6627 22.8963 25.3701 18.0287 25.3701C16.3914 25.3701 14.8519 24.5159 14.3358 23.5103C14.3358 23.5103 13.526 26.5893 13.3302 27.3545C12.9743 28.7605 11.9865 30.5136 11.328 31.5903C12.8408 32.053 14.4337 32.3111 16.1155 32.3111C25.032 32.3111 32.2577 25.0854 32.2577 16.1689C32.2844 7.22573 25.0587 0 16.1422 0Z\" fill=\"#BCBEC0\"></path></svg>					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 08:15:47', '2023-10-02 08:15:47', '', 13, 'https://av-advertising.com/beyondc/?p=169', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(170, 1, '2023-10-02 08:15:48', '2023-10-02 08:15:48', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n															<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<p>it’s time we inspire those who inspired us</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.8677 32.2932C25.7779 32.2932 33.001 25.0701 33.001 16.1599C33.001 7.24974 25.7779 0.0266113 16.8677 0.0266113C7.95751 0.0266113 0.734375 7.24974 0.734375 16.1599C0.734375 25.0701 7.95751 32.2932 16.8677 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M27.6173 16.1601C27.6173 14.8609 26.5672 13.8108 25.268 13.8108C24.6362 13.8108 24.0578 14.06 23.6395 14.4693C22.0289 13.3125 19.8131 12.5561 17.3482 12.476L18.416 7.43047L21.9132 8.17795C21.9577 9.06782 22.6874 9.77972 23.5862 9.77972C24.4849 9.77972 25.268 9.02333 25.268 8.09787C25.268 7.1724 24.5116 6.41602 23.5862 6.41602C22.9277 6.41602 22.3581 6.79866 22.0823 7.35038L18.1758 6.5228C18.069 6.4961 17.9533 6.5228 17.8554 6.58509C17.7575 6.64738 17.6952 6.74527 17.6774 6.85205L16.485 12.476C13.9845 12.5472 11.7331 13.2947 10.1047 14.4693C9.68643 14.06 9.10802 13.8108 8.47622 13.8108C7.17701 13.8108 6.12695 14.8609 6.12695 16.1601C6.12695 17.1122 6.69647 17.9398 7.51514 18.3046C7.47955 18.536 7.46175 18.7763 7.46175 19.0165C7.46175 22.6383 11.6708 25.566 16.8677 25.566C22.0645 25.566 26.2736 22.6294 26.2736 19.0165C26.2736 18.7763 26.2558 18.5449 26.2202 18.3135C27.0478 17.9487 27.6173 17.1211 27.6173 16.1601ZM11.484 17.8419C11.484 16.9165 12.2403 16.1601 13.1658 16.1601C14.0913 16.1601 14.8477 16.9165 14.8477 17.8419C14.8477 18.7674 14.0913 19.5238 13.1658 19.5238C12.2403 19.5238 11.484 18.7674 11.484 17.8419ZM20.8543 22.2824C19.7064 23.4303 17.5084 23.5193 16.8677 23.5193C16.227 23.5193 14.0201 23.4303 12.881 22.2824C12.712 22.1133 12.712 21.8374 12.881 21.6683C13.0501 21.4993 13.326 21.4993 13.4951 21.6683C14.2159 22.3891 15.7642 22.6472 16.8677 22.6472C17.9711 22.6472 19.5195 22.3891 20.2403 21.6683C20.4093 21.4993 20.6852 21.4993 20.8543 21.6683C21.0234 21.8374 21.0234 22.1133 20.8543 22.2824ZM20.5606 19.5238C19.6351 19.5238 18.8788 18.7674 18.8788 17.8419C18.8788 16.9165 19.6351 16.1601 20.5606 16.1601C21.4861 16.1601 22.2425 16.9165 22.2425 17.8419C22.2425 18.7674 21.4861 19.5238 20.5606 19.5238Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.1422 0C7.22573 0 0 7.22573 0 16.1422C0 22.9853 4.25357 28.8317 10.2602 31.181C10.1178 29.9085 9.99322 27.9419 10.3136 26.5448C10.6072 25.2811 12.2001 18.5182 12.2001 18.5182C12.2001 18.5182 11.7196 17.5482 11.7196 16.1244C11.7196 13.8819 13.0188 12.2001 14.6472 12.2001C16.0265 12.2001 16.6939 13.2323 16.6939 14.4693C16.6939 15.8485 15.813 17.9219 15.3502 19.853C14.9676 21.4636 16.16 22.7806 17.744 22.7806C20.6182 22.7806 22.8162 19.7551 22.8162 15.3947C22.8162 11.5238 20.0398 8.82749 16.0621 8.82749C11.4615 8.82749 8.7652 12.2713 8.7652 15.8308C8.7652 17.21 9.29912 18.705 9.95762 19.5148C10.0911 19.675 10.1 19.8174 10.0644 19.9775C9.94872 20.4848 9.66397 21.5882 9.61057 21.8107C9.54828 22.1043 9.37031 22.1666 9.06775 22.0242C7.04775 21.081 5.78414 18.1444 5.78414 15.7685C5.78414 10.6784 9.47709 5.99771 16.4537 5.99771C22.0509 5.99771 26.4024 9.98432 26.4024 15.3235C26.4024 20.6627 22.8963 25.3701 18.0287 25.3701C16.3914 25.3701 14.8519 24.5159 14.3358 23.5103C14.3358 23.5103 13.526 26.5893 13.3302 27.3545C12.9743 28.7605 11.9865 30.5136 11.328 31.5903C12.8408 32.053 14.4337 32.3111 16.1155 32.3111C25.032 32.3111 32.2577 25.0854 32.2577 16.1689C32.2844 7.22573 25.0587 0 16.1422 0Z\" fill=\"#BCBEC0\"></path></svg>					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 08:15:48', '2023-10-02 08:15:48', '', 13, 'https://av-advertising.com/beyondc/?p=170', 0, 'revision', '', 0),
(171, 1, '2023-10-02 08:15:48', '2023-10-02 08:15:48', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n															<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<p>it’s time we inspire those who inspired us</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.8677 32.2932C25.7779 32.2932 33.001 25.0701 33.001 16.1599C33.001 7.24974 25.7779 0.0266113 16.8677 0.0266113C7.95751 0.0266113 0.734375 7.24974 0.734375 16.1599C0.734375 25.0701 7.95751 32.2932 16.8677 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M27.6173 16.1601C27.6173 14.8609 26.5672 13.8108 25.268 13.8108C24.6362 13.8108 24.0578 14.06 23.6395 14.4693C22.0289 13.3125 19.8131 12.5561 17.3482 12.476L18.416 7.43047L21.9132 8.17795C21.9577 9.06782 22.6874 9.77972 23.5862 9.77972C24.4849 9.77972 25.268 9.02333 25.268 8.09787C25.268 7.1724 24.5116 6.41602 23.5862 6.41602C22.9277 6.41602 22.3581 6.79866 22.0823 7.35038L18.1758 6.5228C18.069 6.4961 17.9533 6.5228 17.8554 6.58509C17.7575 6.64738 17.6952 6.74527 17.6774 6.85205L16.485 12.476C13.9845 12.5472 11.7331 13.2947 10.1047 14.4693C9.68643 14.06 9.10802 13.8108 8.47622 13.8108C7.17701 13.8108 6.12695 14.8609 6.12695 16.1601C6.12695 17.1122 6.69647 17.9398 7.51514 18.3046C7.47955 18.536 7.46175 18.7763 7.46175 19.0165C7.46175 22.6383 11.6708 25.566 16.8677 25.566C22.0645 25.566 26.2736 22.6294 26.2736 19.0165C26.2736 18.7763 26.2558 18.5449 26.2202 18.3135C27.0478 17.9487 27.6173 17.1211 27.6173 16.1601ZM11.484 17.8419C11.484 16.9165 12.2403 16.1601 13.1658 16.1601C14.0913 16.1601 14.8477 16.9165 14.8477 17.8419C14.8477 18.7674 14.0913 19.5238 13.1658 19.5238C12.2403 19.5238 11.484 18.7674 11.484 17.8419ZM20.8543 22.2824C19.7064 23.4303 17.5084 23.5193 16.8677 23.5193C16.227 23.5193 14.0201 23.4303 12.881 22.2824C12.712 22.1133 12.712 21.8374 12.881 21.6683C13.0501 21.4993 13.326 21.4993 13.4951 21.6683C14.2159 22.3891 15.7642 22.6472 16.8677 22.6472C17.9711 22.6472 19.5195 22.3891 20.2403 21.6683C20.4093 21.4993 20.6852 21.4993 20.8543 21.6683C21.0234 21.8374 21.0234 22.1133 20.8543 22.2824ZM20.5606 19.5238C19.6351 19.5238 18.8788 18.7674 18.8788 17.8419C18.8788 16.9165 19.6351 16.1601 20.5606 16.1601C21.4861 16.1601 22.2425 16.9165 22.2425 17.8419C22.2425 18.7674 21.4861 19.5238 20.5606 19.5238Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.1422 0C7.22573 0 0 7.22573 0 16.1422C0 22.9853 4.25357 28.8317 10.2602 31.181C10.1178 29.9085 9.99322 27.9419 10.3136 26.5448C10.6072 25.2811 12.2001 18.5182 12.2001 18.5182C12.2001 18.5182 11.7196 17.5482 11.7196 16.1244C11.7196 13.8819 13.0188 12.2001 14.6472 12.2001C16.0265 12.2001 16.6939 13.2323 16.6939 14.4693C16.6939 15.8485 15.813 17.9219 15.3502 19.853C14.9676 21.4636 16.16 22.7806 17.744 22.7806C20.6182 22.7806 22.8162 19.7551 22.8162 15.3947C22.8162 11.5238 20.0398 8.82749 16.0621 8.82749C11.4615 8.82749 8.7652 12.2713 8.7652 15.8308C8.7652 17.21 9.29912 18.705 9.95762 19.5148C10.0911 19.675 10.1 19.8174 10.0644 19.9775C9.94872 20.4848 9.66397 21.5882 9.61057 21.8107C9.54828 22.1043 9.37031 22.1666 9.06775 22.0242C7.04775 21.081 5.78414 18.1444 5.78414 15.7685C5.78414 10.6784 9.47709 5.99771 16.4537 5.99771C22.0509 5.99771 26.4024 9.98432 26.4024 15.3235C26.4024 20.6627 22.8963 25.3701 18.0287 25.3701C16.3914 25.3701 14.8519 24.5159 14.3358 23.5103C14.3358 23.5103 13.526 26.5893 13.3302 27.3545C12.9743 28.7605 11.9865 30.5136 11.328 31.5903C12.8408 32.053 14.4337 32.3111 16.1155 32.3111C25.032 32.3111 32.2577 25.0854 32.2577 16.1689C32.2844 7.22573 25.0587 0 16.1422 0Z\" fill=\"#BCBEC0\"></path></svg>					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 08:15:48', '2023-10-02 08:15:48', '', 13, 'https://av-advertising.com/beyondc/?p=171', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(172, 1, '2023-10-02 08:16:17', '2023-10-02 08:16:17', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n															<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<p>it’s time we inspire those who inspired us</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.8677 32.2932C25.7779 32.2932 33.001 25.0701 33.001 16.1599C33.001 7.24974 25.7779 0.0266113 16.8677 0.0266113C7.95751 0.0266113 0.734375 7.24974 0.734375 16.1599C0.734375 25.0701 7.95751 32.2932 16.8677 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M27.6173 16.1601C27.6173 14.8609 26.5672 13.8108 25.268 13.8108C24.6362 13.8108 24.0578 14.06 23.6395 14.4693C22.0289 13.3125 19.8131 12.5561 17.3482 12.476L18.416 7.43047L21.9132 8.17795C21.9577 9.06782 22.6874 9.77972 23.5862 9.77972C24.4849 9.77972 25.268 9.02333 25.268 8.09787C25.268 7.1724 24.5116 6.41602 23.5862 6.41602C22.9277 6.41602 22.3581 6.79866 22.0823 7.35038L18.1758 6.5228C18.069 6.4961 17.9533 6.5228 17.8554 6.58509C17.7575 6.64738 17.6952 6.74527 17.6774 6.85205L16.485 12.476C13.9845 12.5472 11.7331 13.2947 10.1047 14.4693C9.68643 14.06 9.10802 13.8108 8.47622 13.8108C7.17701 13.8108 6.12695 14.8609 6.12695 16.1601C6.12695 17.1122 6.69647 17.9398 7.51514 18.3046C7.47955 18.536 7.46175 18.7763 7.46175 19.0165C7.46175 22.6383 11.6708 25.566 16.8677 25.566C22.0645 25.566 26.2736 22.6294 26.2736 19.0165C26.2736 18.7763 26.2558 18.5449 26.2202 18.3135C27.0478 17.9487 27.6173 17.1211 27.6173 16.1601ZM11.484 17.8419C11.484 16.9165 12.2403 16.1601 13.1658 16.1601C14.0913 16.1601 14.8477 16.9165 14.8477 17.8419C14.8477 18.7674 14.0913 19.5238 13.1658 19.5238C12.2403 19.5238 11.484 18.7674 11.484 17.8419ZM20.8543 22.2824C19.7064 23.4303 17.5084 23.5193 16.8677 23.5193C16.227 23.5193 14.0201 23.4303 12.881 22.2824C12.712 22.1133 12.712 21.8374 12.881 21.6683C13.0501 21.4993 13.326 21.4993 13.4951 21.6683C14.2159 22.3891 15.7642 22.6472 16.8677 22.6472C17.9711 22.6472 19.5195 22.3891 20.2403 21.6683C20.4093 21.4993 20.6852 21.4993 20.8543 21.6683C21.0234 21.8374 21.0234 22.1133 20.8543 22.2824ZM20.5606 19.5238C19.6351 19.5238 18.8788 18.7674 18.8788 17.8419C18.8788 16.9165 19.6351 16.1601 20.5606 16.1601C21.4861 16.1601 22.2425 16.9165 22.2425 17.8419C22.2425 18.7674 21.4861 19.5238 20.5606 19.5238Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.1422 0C7.22573 0 0 7.22573 0 16.1422C0 22.9853 4.25357 28.8317 10.2602 31.181C10.1178 29.9085 9.99322 27.9419 10.3136 26.5448C10.6072 25.2811 12.2001 18.5182 12.2001 18.5182C12.2001 18.5182 11.7196 17.5482 11.7196 16.1244C11.7196 13.8819 13.0188 12.2001 14.6472 12.2001C16.0265 12.2001 16.6939 13.2323 16.6939 14.4693C16.6939 15.8485 15.813 17.9219 15.3502 19.853C14.9676 21.4636 16.16 22.7806 17.744 22.7806C20.6182 22.7806 22.8162 19.7551 22.8162 15.3947C22.8162 11.5238 20.0398 8.82749 16.0621 8.82749C11.4615 8.82749 8.7652 12.2713 8.7652 15.8308C8.7652 17.21 9.29912 18.705 9.95762 19.5148C10.0911 19.675 10.1 19.8174 10.0644 19.9775C9.94872 20.4848 9.66397 21.5882 9.61057 21.8107C9.54828 22.1043 9.37031 22.1666 9.06775 22.0242C7.04775 21.081 5.78414 18.1444 5.78414 15.7685C5.78414 10.6784 9.47709 5.99771 16.4537 5.99771C22.0509 5.99771 26.4024 9.98432 26.4024 15.3235C26.4024 20.6627 22.8963 25.3701 18.0287 25.3701C16.3914 25.3701 14.8519 24.5159 14.3358 23.5103C14.3358 23.5103 13.526 26.5893 13.3302 27.3545C12.9743 28.7605 11.9865 30.5136 11.328 31.5903C12.8408 32.053 14.4337 32.3111 16.1155 32.3111C25.032 32.3111 32.2577 25.0854 32.2577 16.1689C32.2844 7.22573 25.0587 0 16.1422 0Z\" fill=\"#BCBEC0\"></path></svg>					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 08:16:17', '2023-10-02 08:16:17', '', 13, 'https://av-advertising.com/beyondc/?p=172', 0, 'revision', '', 0),
(173, 1, '2023-10-02 08:16:17', '2023-10-02 08:16:17', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n															<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<p>it’s time we inspire those who inspired us</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.8677 32.2932C25.7779 32.2932 33.001 25.0701 33.001 16.1599C33.001 7.24974 25.7779 0.0266113 16.8677 0.0266113C7.95751 0.0266113 0.734375 7.24974 0.734375 16.1599C0.734375 25.0701 7.95751 32.2932 16.8677 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M27.6173 16.1601C27.6173 14.8609 26.5672 13.8108 25.268 13.8108C24.6362 13.8108 24.0578 14.06 23.6395 14.4693C22.0289 13.3125 19.8131 12.5561 17.3482 12.476L18.416 7.43047L21.9132 8.17795C21.9577 9.06782 22.6874 9.77972 23.5862 9.77972C24.4849 9.77972 25.268 9.02333 25.268 8.09787C25.268 7.1724 24.5116 6.41602 23.5862 6.41602C22.9277 6.41602 22.3581 6.79866 22.0823 7.35038L18.1758 6.5228C18.069 6.4961 17.9533 6.5228 17.8554 6.58509C17.7575 6.64738 17.6952 6.74527 17.6774 6.85205L16.485 12.476C13.9845 12.5472 11.7331 13.2947 10.1047 14.4693C9.68643 14.06 9.10802 13.8108 8.47622 13.8108C7.17701 13.8108 6.12695 14.8609 6.12695 16.1601C6.12695 17.1122 6.69647 17.9398 7.51514 18.3046C7.47955 18.536 7.46175 18.7763 7.46175 19.0165C7.46175 22.6383 11.6708 25.566 16.8677 25.566C22.0645 25.566 26.2736 22.6294 26.2736 19.0165C26.2736 18.7763 26.2558 18.5449 26.2202 18.3135C27.0478 17.9487 27.6173 17.1211 27.6173 16.1601ZM11.484 17.8419C11.484 16.9165 12.2403 16.1601 13.1658 16.1601C14.0913 16.1601 14.8477 16.9165 14.8477 17.8419C14.8477 18.7674 14.0913 19.5238 13.1658 19.5238C12.2403 19.5238 11.484 18.7674 11.484 17.8419ZM20.8543 22.2824C19.7064 23.4303 17.5084 23.5193 16.8677 23.5193C16.227 23.5193 14.0201 23.4303 12.881 22.2824C12.712 22.1133 12.712 21.8374 12.881 21.6683C13.0501 21.4993 13.326 21.4993 13.4951 21.6683C14.2159 22.3891 15.7642 22.6472 16.8677 22.6472C17.9711 22.6472 19.5195 22.3891 20.2403 21.6683C20.4093 21.4993 20.6852 21.4993 20.8543 21.6683C21.0234 21.8374 21.0234 22.1133 20.8543 22.2824ZM20.5606 19.5238C19.6351 19.5238 18.8788 18.7674 18.8788 17.8419C18.8788 16.9165 19.6351 16.1601 20.5606 16.1601C21.4861 16.1601 22.2425 16.9165 22.2425 17.8419C22.2425 18.7674 21.4861 19.5238 20.5606 19.5238Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.1422 0C7.22573 0 0 7.22573 0 16.1422C0 22.9853 4.25357 28.8317 10.2602 31.181C10.1178 29.9085 9.99322 27.9419 10.3136 26.5448C10.6072 25.2811 12.2001 18.5182 12.2001 18.5182C12.2001 18.5182 11.7196 17.5482 11.7196 16.1244C11.7196 13.8819 13.0188 12.2001 14.6472 12.2001C16.0265 12.2001 16.6939 13.2323 16.6939 14.4693C16.6939 15.8485 15.813 17.9219 15.3502 19.853C14.9676 21.4636 16.16 22.7806 17.744 22.7806C20.6182 22.7806 22.8162 19.7551 22.8162 15.3947C22.8162 11.5238 20.0398 8.82749 16.0621 8.82749C11.4615 8.82749 8.7652 12.2713 8.7652 15.8308C8.7652 17.21 9.29912 18.705 9.95762 19.5148C10.0911 19.675 10.1 19.8174 10.0644 19.9775C9.94872 20.4848 9.66397 21.5882 9.61057 21.8107C9.54828 22.1043 9.37031 22.1666 9.06775 22.0242C7.04775 21.081 5.78414 18.1444 5.78414 15.7685C5.78414 10.6784 9.47709 5.99771 16.4537 5.99771C22.0509 5.99771 26.4024 9.98432 26.4024 15.3235C26.4024 20.6627 22.8963 25.3701 18.0287 25.3701C16.3914 25.3701 14.8519 24.5159 14.3358 23.5103C14.3358 23.5103 13.526 26.5893 13.3302 27.3545C12.9743 28.7605 11.9865 30.5136 11.328 31.5903C12.8408 32.053 14.4337 32.3111 16.1155 32.3111C25.032 32.3111 32.2577 25.0854 32.2577 16.1689C32.2844 7.22573 25.0587 0 16.1422 0Z\" fill=\"#BCBEC0\"></path></svg>					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 08:16:17', '2023-10-02 08:16:17', '', 13, 'https://av-advertising.com/beyondc/?p=173', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(174, 1, '2023-10-02 08:16:18', '2023-10-02 08:16:18', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n															<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<p>it’s time we inspire those who inspired us</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.8677 32.2932C25.7779 32.2932 33.001 25.0701 33.001 16.1599C33.001 7.24974 25.7779 0.0266113 16.8677 0.0266113C7.95751 0.0266113 0.734375 7.24974 0.734375 16.1599C0.734375 25.0701 7.95751 32.2932 16.8677 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M27.6173 16.1601C27.6173 14.8609 26.5672 13.8108 25.268 13.8108C24.6362 13.8108 24.0578 14.06 23.6395 14.4693C22.0289 13.3125 19.8131 12.5561 17.3482 12.476L18.416 7.43047L21.9132 8.17795C21.9577 9.06782 22.6874 9.77972 23.5862 9.77972C24.4849 9.77972 25.268 9.02333 25.268 8.09787C25.268 7.1724 24.5116 6.41602 23.5862 6.41602C22.9277 6.41602 22.3581 6.79866 22.0823 7.35038L18.1758 6.5228C18.069 6.4961 17.9533 6.5228 17.8554 6.58509C17.7575 6.64738 17.6952 6.74527 17.6774 6.85205L16.485 12.476C13.9845 12.5472 11.7331 13.2947 10.1047 14.4693C9.68643 14.06 9.10802 13.8108 8.47622 13.8108C7.17701 13.8108 6.12695 14.8609 6.12695 16.1601C6.12695 17.1122 6.69647 17.9398 7.51514 18.3046C7.47955 18.536 7.46175 18.7763 7.46175 19.0165C7.46175 22.6383 11.6708 25.566 16.8677 25.566C22.0645 25.566 26.2736 22.6294 26.2736 19.0165C26.2736 18.7763 26.2558 18.5449 26.2202 18.3135C27.0478 17.9487 27.6173 17.1211 27.6173 16.1601ZM11.484 17.8419C11.484 16.9165 12.2403 16.1601 13.1658 16.1601C14.0913 16.1601 14.8477 16.9165 14.8477 17.8419C14.8477 18.7674 14.0913 19.5238 13.1658 19.5238C12.2403 19.5238 11.484 18.7674 11.484 17.8419ZM20.8543 22.2824C19.7064 23.4303 17.5084 23.5193 16.8677 23.5193C16.227 23.5193 14.0201 23.4303 12.881 22.2824C12.712 22.1133 12.712 21.8374 12.881 21.6683C13.0501 21.4993 13.326 21.4993 13.4951 21.6683C14.2159 22.3891 15.7642 22.6472 16.8677 22.6472C17.9711 22.6472 19.5195 22.3891 20.2403 21.6683C20.4093 21.4993 20.6852 21.4993 20.8543 21.6683C21.0234 21.8374 21.0234 22.1133 20.8543 22.2824ZM20.5606 19.5238C19.6351 19.5238 18.8788 18.7674 18.8788 17.8419C18.8788 16.9165 19.6351 16.1601 20.5606 16.1601C21.4861 16.1601 22.2425 16.9165 22.2425 17.8419C22.2425 18.7674 21.4861 19.5238 20.5606 19.5238Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.1422 0C7.22573 0 0 7.22573 0 16.1422C0 22.9853 4.25357 28.8317 10.2602 31.181C10.1178 29.9085 9.99322 27.9419 10.3136 26.5448C10.6072 25.2811 12.2001 18.5182 12.2001 18.5182C12.2001 18.5182 11.7196 17.5482 11.7196 16.1244C11.7196 13.8819 13.0188 12.2001 14.6472 12.2001C16.0265 12.2001 16.6939 13.2323 16.6939 14.4693C16.6939 15.8485 15.813 17.9219 15.3502 19.853C14.9676 21.4636 16.16 22.7806 17.744 22.7806C20.6182 22.7806 22.8162 19.7551 22.8162 15.3947C22.8162 11.5238 20.0398 8.82749 16.0621 8.82749C11.4615 8.82749 8.7652 12.2713 8.7652 15.8308C8.7652 17.21 9.29912 18.705 9.95762 19.5148C10.0911 19.675 10.1 19.8174 10.0644 19.9775C9.94872 20.4848 9.66397 21.5882 9.61057 21.8107C9.54828 22.1043 9.37031 22.1666 9.06775 22.0242C7.04775 21.081 5.78414 18.1444 5.78414 15.7685C5.78414 10.6784 9.47709 5.99771 16.4537 5.99771C22.0509 5.99771 26.4024 9.98432 26.4024 15.3235C26.4024 20.6627 22.8963 25.3701 18.0287 25.3701C16.3914 25.3701 14.8519 24.5159 14.3358 23.5103C14.3358 23.5103 13.526 26.5893 13.3302 27.3545C12.9743 28.7605 11.9865 30.5136 11.328 31.5903C12.8408 32.053 14.4337 32.3111 16.1155 32.3111C25.032 32.3111 32.2577 25.0854 32.2577 16.1689C32.2844 7.22573 25.0587 0 16.1422 0Z\" fill=\"#BCBEC0\"></path></svg>					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 08:16:18', '2023-10-02 08:16:18', '', 13, 'https://av-advertising.com/beyondc/?p=174', 0, 'revision', '', 0),
(175, 1, '2023-10-02 08:16:51', '2023-10-02 08:16:51', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n															<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<p>it’s time we inspire those who inspired us</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.8677 32.2932C25.7779 32.2932 33.001 25.0701 33.001 16.1599C33.001 7.24974 25.7779 0.0266113 16.8677 0.0266113C7.95751 0.0266113 0.734375 7.24974 0.734375 16.1599C0.734375 25.0701 7.95751 32.2932 16.8677 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M27.6173 16.1601C27.6173 14.8609 26.5672 13.8108 25.268 13.8108C24.6362 13.8108 24.0578 14.06 23.6395 14.4693C22.0289 13.3125 19.8131 12.5561 17.3482 12.476L18.416 7.43047L21.9132 8.17795C21.9577 9.06782 22.6874 9.77972 23.5862 9.77972C24.4849 9.77972 25.268 9.02333 25.268 8.09787C25.268 7.1724 24.5116 6.41602 23.5862 6.41602C22.9277 6.41602 22.3581 6.79866 22.0823 7.35038L18.1758 6.5228C18.069 6.4961 17.9533 6.5228 17.8554 6.58509C17.7575 6.64738 17.6952 6.74527 17.6774 6.85205L16.485 12.476C13.9845 12.5472 11.7331 13.2947 10.1047 14.4693C9.68643 14.06 9.10802 13.8108 8.47622 13.8108C7.17701 13.8108 6.12695 14.8609 6.12695 16.1601C6.12695 17.1122 6.69647 17.9398 7.51514 18.3046C7.47955 18.536 7.46175 18.7763 7.46175 19.0165C7.46175 22.6383 11.6708 25.566 16.8677 25.566C22.0645 25.566 26.2736 22.6294 26.2736 19.0165C26.2736 18.7763 26.2558 18.5449 26.2202 18.3135C27.0478 17.9487 27.6173 17.1211 27.6173 16.1601ZM11.484 17.8419C11.484 16.9165 12.2403 16.1601 13.1658 16.1601C14.0913 16.1601 14.8477 16.9165 14.8477 17.8419C14.8477 18.7674 14.0913 19.5238 13.1658 19.5238C12.2403 19.5238 11.484 18.7674 11.484 17.8419ZM20.8543 22.2824C19.7064 23.4303 17.5084 23.5193 16.8677 23.5193C16.227 23.5193 14.0201 23.4303 12.881 22.2824C12.712 22.1133 12.712 21.8374 12.881 21.6683C13.0501 21.4993 13.326 21.4993 13.4951 21.6683C14.2159 22.3891 15.7642 22.6472 16.8677 22.6472C17.9711 22.6472 19.5195 22.3891 20.2403 21.6683C20.4093 21.4993 20.6852 21.4993 20.8543 21.6683C21.0234 21.8374 21.0234 22.1133 20.8543 22.2824ZM20.5606 19.5238C19.6351 19.5238 18.8788 18.7674 18.8788 17.8419C18.8788 16.9165 19.6351 16.1601 20.5606 16.1601C21.4861 16.1601 22.2425 16.9165 22.2425 17.8419C22.2425 18.7674 21.4861 19.5238 20.5606 19.5238Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.1422 0C7.22573 0 0 7.22573 0 16.1422C0 22.9853 4.25357 28.8317 10.2602 31.181C10.1178 29.9085 9.99322 27.9419 10.3136 26.5448C10.6072 25.2811 12.2001 18.5182 12.2001 18.5182C12.2001 18.5182 11.7196 17.5482 11.7196 16.1244C11.7196 13.8819 13.0188 12.2001 14.6472 12.2001C16.0265 12.2001 16.6939 13.2323 16.6939 14.4693C16.6939 15.8485 15.813 17.9219 15.3502 19.853C14.9676 21.4636 16.16 22.7806 17.744 22.7806C20.6182 22.7806 22.8162 19.7551 22.8162 15.3947C22.8162 11.5238 20.0398 8.82749 16.0621 8.82749C11.4615 8.82749 8.7652 12.2713 8.7652 15.8308C8.7652 17.21 9.29912 18.705 9.95762 19.5148C10.0911 19.675 10.1 19.8174 10.0644 19.9775C9.94872 20.4848 9.66397 21.5882 9.61057 21.8107C9.54828 22.1043 9.37031 22.1666 9.06775 22.0242C7.04775 21.081 5.78414 18.1444 5.78414 15.7685C5.78414 10.6784 9.47709 5.99771 16.4537 5.99771C22.0509 5.99771 26.4024 9.98432 26.4024 15.3235C26.4024 20.6627 22.8963 25.3701 18.0287 25.3701C16.3914 25.3701 14.8519 24.5159 14.3358 23.5103C14.3358 23.5103 13.526 26.5893 13.3302 27.3545C12.9743 28.7605 11.9865 30.5136 11.328 31.5903C12.8408 32.053 14.4337 32.3111 16.1155 32.3111C25.032 32.3111 32.2577 25.0854 32.2577 16.1689C32.2844 7.22573 25.0587 0 16.1422 0Z\" fill=\"#BCBEC0\"></path></svg>					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 08:16:51', '2023-10-02 08:16:51', '', 13, 'https://av-advertising.com/beyondc/?p=175', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(176, 1, '2023-10-02 08:16:51', '2023-10-02 08:16:51', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n															<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<p>it’s time we inspire those who inspired us</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.8677 32.2932C25.7779 32.2932 33.001 25.0701 33.001 16.1599C33.001 7.24974 25.7779 0.0266113 16.8677 0.0266113C7.95751 0.0266113 0.734375 7.24974 0.734375 16.1599C0.734375 25.0701 7.95751 32.2932 16.8677 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M27.6173 16.1601C27.6173 14.8609 26.5672 13.8108 25.268 13.8108C24.6362 13.8108 24.0578 14.06 23.6395 14.4693C22.0289 13.3125 19.8131 12.5561 17.3482 12.476L18.416 7.43047L21.9132 8.17795C21.9577 9.06782 22.6874 9.77972 23.5862 9.77972C24.4849 9.77972 25.268 9.02333 25.268 8.09787C25.268 7.1724 24.5116 6.41602 23.5862 6.41602C22.9277 6.41602 22.3581 6.79866 22.0823 7.35038L18.1758 6.5228C18.069 6.4961 17.9533 6.5228 17.8554 6.58509C17.7575 6.64738 17.6952 6.74527 17.6774 6.85205L16.485 12.476C13.9845 12.5472 11.7331 13.2947 10.1047 14.4693C9.68643 14.06 9.10802 13.8108 8.47622 13.8108C7.17701 13.8108 6.12695 14.8609 6.12695 16.1601C6.12695 17.1122 6.69647 17.9398 7.51514 18.3046C7.47955 18.536 7.46175 18.7763 7.46175 19.0165C7.46175 22.6383 11.6708 25.566 16.8677 25.566C22.0645 25.566 26.2736 22.6294 26.2736 19.0165C26.2736 18.7763 26.2558 18.5449 26.2202 18.3135C27.0478 17.9487 27.6173 17.1211 27.6173 16.1601ZM11.484 17.8419C11.484 16.9165 12.2403 16.1601 13.1658 16.1601C14.0913 16.1601 14.8477 16.9165 14.8477 17.8419C14.8477 18.7674 14.0913 19.5238 13.1658 19.5238C12.2403 19.5238 11.484 18.7674 11.484 17.8419ZM20.8543 22.2824C19.7064 23.4303 17.5084 23.5193 16.8677 23.5193C16.227 23.5193 14.0201 23.4303 12.881 22.2824C12.712 22.1133 12.712 21.8374 12.881 21.6683C13.0501 21.4993 13.326 21.4993 13.4951 21.6683C14.2159 22.3891 15.7642 22.6472 16.8677 22.6472C17.9711 22.6472 19.5195 22.3891 20.2403 21.6683C20.4093 21.4993 20.6852 21.4993 20.8543 21.6683C21.0234 21.8374 21.0234 22.1133 20.8543 22.2824ZM20.5606 19.5238C19.6351 19.5238 18.8788 18.7674 18.8788 17.8419C18.8788 16.9165 19.6351 16.1601 20.5606 16.1601C21.4861 16.1601 22.2425 16.9165 22.2425 17.8419C22.2425 18.7674 21.4861 19.5238 20.5606 19.5238Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.1422 0C7.22573 0 0 7.22573 0 16.1422C0 22.9853 4.25357 28.8317 10.2602 31.181C10.1178 29.9085 9.99322 27.9419 10.3136 26.5448C10.6072 25.2811 12.2001 18.5182 12.2001 18.5182C12.2001 18.5182 11.7196 17.5482 11.7196 16.1244C11.7196 13.8819 13.0188 12.2001 14.6472 12.2001C16.0265 12.2001 16.6939 13.2323 16.6939 14.4693C16.6939 15.8485 15.813 17.9219 15.3502 19.853C14.9676 21.4636 16.16 22.7806 17.744 22.7806C20.6182 22.7806 22.8162 19.7551 22.8162 15.3947C22.8162 11.5238 20.0398 8.82749 16.0621 8.82749C11.4615 8.82749 8.7652 12.2713 8.7652 15.8308C8.7652 17.21 9.29912 18.705 9.95762 19.5148C10.0911 19.675 10.1 19.8174 10.0644 19.9775C9.94872 20.4848 9.66397 21.5882 9.61057 21.8107C9.54828 22.1043 9.37031 22.1666 9.06775 22.0242C7.04775 21.081 5.78414 18.1444 5.78414 15.7685C5.78414 10.6784 9.47709 5.99771 16.4537 5.99771C22.0509 5.99771 26.4024 9.98432 26.4024 15.3235C26.4024 20.6627 22.8963 25.3701 18.0287 25.3701C16.3914 25.3701 14.8519 24.5159 14.3358 23.5103C14.3358 23.5103 13.526 26.5893 13.3302 27.3545C12.9743 28.7605 11.9865 30.5136 11.328 31.5903C12.8408 32.053 14.4337 32.3111 16.1155 32.3111C25.032 32.3111 32.2577 25.0854 32.2577 16.1689C32.2844 7.22573 25.0587 0 16.1422 0Z\" fill=\"#BCBEC0\"></path></svg>					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 08:16:51', '2023-10-02 08:16:51', '', 13, 'https://av-advertising.com/beyondc/?p=176', 0, 'revision', '', 0),
(177, 1, '2023-10-02 08:16:51', '2023-10-02 08:16:51', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n															<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<p>it’s time we inspire those who inspired us</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.8677 32.2932C25.7779 32.2932 33.001 25.0701 33.001 16.1599C33.001 7.24974 25.7779 0.0266113 16.8677 0.0266113C7.95751 0.0266113 0.734375 7.24974 0.734375 16.1599C0.734375 25.0701 7.95751 32.2932 16.8677 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M27.6173 16.1601C27.6173 14.8609 26.5672 13.8108 25.268 13.8108C24.6362 13.8108 24.0578 14.06 23.6395 14.4693C22.0289 13.3125 19.8131 12.5561 17.3482 12.476L18.416 7.43047L21.9132 8.17795C21.9577 9.06782 22.6874 9.77972 23.5862 9.77972C24.4849 9.77972 25.268 9.02333 25.268 8.09787C25.268 7.1724 24.5116 6.41602 23.5862 6.41602C22.9277 6.41602 22.3581 6.79866 22.0823 7.35038L18.1758 6.5228C18.069 6.4961 17.9533 6.5228 17.8554 6.58509C17.7575 6.64738 17.6952 6.74527 17.6774 6.85205L16.485 12.476C13.9845 12.5472 11.7331 13.2947 10.1047 14.4693C9.68643 14.06 9.10802 13.8108 8.47622 13.8108C7.17701 13.8108 6.12695 14.8609 6.12695 16.1601C6.12695 17.1122 6.69647 17.9398 7.51514 18.3046C7.47955 18.536 7.46175 18.7763 7.46175 19.0165C7.46175 22.6383 11.6708 25.566 16.8677 25.566C22.0645 25.566 26.2736 22.6294 26.2736 19.0165C26.2736 18.7763 26.2558 18.5449 26.2202 18.3135C27.0478 17.9487 27.6173 17.1211 27.6173 16.1601ZM11.484 17.8419C11.484 16.9165 12.2403 16.1601 13.1658 16.1601C14.0913 16.1601 14.8477 16.9165 14.8477 17.8419C14.8477 18.7674 14.0913 19.5238 13.1658 19.5238C12.2403 19.5238 11.484 18.7674 11.484 17.8419ZM20.8543 22.2824C19.7064 23.4303 17.5084 23.5193 16.8677 23.5193C16.227 23.5193 14.0201 23.4303 12.881 22.2824C12.712 22.1133 12.712 21.8374 12.881 21.6683C13.0501 21.4993 13.326 21.4993 13.4951 21.6683C14.2159 22.3891 15.7642 22.6472 16.8677 22.6472C17.9711 22.6472 19.5195 22.3891 20.2403 21.6683C20.4093 21.4993 20.6852 21.4993 20.8543 21.6683C21.0234 21.8374 21.0234 22.1133 20.8543 22.2824ZM20.5606 19.5238C19.6351 19.5238 18.8788 18.7674 18.8788 17.8419C18.8788 16.9165 19.6351 16.1601 20.5606 16.1601C21.4861 16.1601 22.2425 16.9165 22.2425 17.8419C22.2425 18.7674 21.4861 19.5238 20.5606 19.5238Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.1422 0C7.22573 0 0 7.22573 0 16.1422C0 22.9853 4.25357 28.8317 10.2602 31.181C10.1178 29.9085 9.99322 27.9419 10.3136 26.5448C10.6072 25.2811 12.2001 18.5182 12.2001 18.5182C12.2001 18.5182 11.7196 17.5482 11.7196 16.1244C11.7196 13.8819 13.0188 12.2001 14.6472 12.2001C16.0265 12.2001 16.6939 13.2323 16.6939 14.4693C16.6939 15.8485 15.813 17.9219 15.3502 19.853C14.9676 21.4636 16.16 22.7806 17.744 22.7806C20.6182 22.7806 22.8162 19.7551 22.8162 15.3947C22.8162 11.5238 20.0398 8.82749 16.0621 8.82749C11.4615 8.82749 8.7652 12.2713 8.7652 15.8308C8.7652 17.21 9.29912 18.705 9.95762 19.5148C10.0911 19.675 10.1 19.8174 10.0644 19.9775C9.94872 20.4848 9.66397 21.5882 9.61057 21.8107C9.54828 22.1043 9.37031 22.1666 9.06775 22.0242C7.04775 21.081 5.78414 18.1444 5.78414 15.7685C5.78414 10.6784 9.47709 5.99771 16.4537 5.99771C22.0509 5.99771 26.4024 9.98432 26.4024 15.3235C26.4024 20.6627 22.8963 25.3701 18.0287 25.3701C16.3914 25.3701 14.8519 24.5159 14.3358 23.5103C14.3358 23.5103 13.526 26.5893 13.3302 27.3545C12.9743 28.7605 11.9865 30.5136 11.328 31.5903C12.8408 32.053 14.4337 32.3111 16.1155 32.3111C25.032 32.3111 32.2577 25.0854 32.2577 16.1689C32.2844 7.22573 25.0587 0 16.1422 0Z\" fill=\"#BCBEC0\"></path></svg>					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 08:16:51', '2023-10-02 08:16:51', '', 13, 'https://av-advertising.com/beyondc/?p=177', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(178, 1, '2023-10-02 08:17:22', '2023-10-02 08:17:22', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n															<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<p>it’s time we inspire those who inspired us</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.8677 32.2932C25.7779 32.2932 33.001 25.0701 33.001 16.1599C33.001 7.24974 25.7779 0.0266113 16.8677 0.0266113C7.95751 0.0266113 0.734375 7.24974 0.734375 16.1599C0.734375 25.0701 7.95751 32.2932 16.8677 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M27.6173 16.1601C27.6173 14.8609 26.5672 13.8108 25.268 13.8108C24.6362 13.8108 24.0578 14.06 23.6395 14.4693C22.0289 13.3125 19.8131 12.5561 17.3482 12.476L18.416 7.43047L21.9132 8.17795C21.9577 9.06782 22.6874 9.77972 23.5862 9.77972C24.4849 9.77972 25.268 9.02333 25.268 8.09787C25.268 7.1724 24.5116 6.41602 23.5862 6.41602C22.9277 6.41602 22.3581 6.79866 22.0823 7.35038L18.1758 6.5228C18.069 6.4961 17.9533 6.5228 17.8554 6.58509C17.7575 6.64738 17.6952 6.74527 17.6774 6.85205L16.485 12.476C13.9845 12.5472 11.7331 13.2947 10.1047 14.4693C9.68643 14.06 9.10802 13.8108 8.47622 13.8108C7.17701 13.8108 6.12695 14.8609 6.12695 16.1601C6.12695 17.1122 6.69647 17.9398 7.51514 18.3046C7.47955 18.536 7.46175 18.7763 7.46175 19.0165C7.46175 22.6383 11.6708 25.566 16.8677 25.566C22.0645 25.566 26.2736 22.6294 26.2736 19.0165C26.2736 18.7763 26.2558 18.5449 26.2202 18.3135C27.0478 17.9487 27.6173 17.1211 27.6173 16.1601ZM11.484 17.8419C11.484 16.9165 12.2403 16.1601 13.1658 16.1601C14.0913 16.1601 14.8477 16.9165 14.8477 17.8419C14.8477 18.7674 14.0913 19.5238 13.1658 19.5238C12.2403 19.5238 11.484 18.7674 11.484 17.8419ZM20.8543 22.2824C19.7064 23.4303 17.5084 23.5193 16.8677 23.5193C16.227 23.5193 14.0201 23.4303 12.881 22.2824C12.712 22.1133 12.712 21.8374 12.881 21.6683C13.0501 21.4993 13.326 21.4993 13.4951 21.6683C14.2159 22.3891 15.7642 22.6472 16.8677 22.6472C17.9711 22.6472 19.5195 22.3891 20.2403 21.6683C20.4093 21.4993 20.6852 21.4993 20.8543 21.6683C21.0234 21.8374 21.0234 22.1133 20.8543 22.2824ZM20.5606 19.5238C19.6351 19.5238 18.8788 18.7674 18.8788 17.8419C18.8788 16.9165 19.6351 16.1601 20.5606 16.1601C21.4861 16.1601 22.2425 16.9165 22.2425 17.8419C22.2425 18.7674 21.4861 19.5238 20.5606 19.5238Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.1422 0C7.22573 0 0 7.22573 0 16.1422C0 22.9853 4.25357 28.8317 10.2602 31.181C10.1178 29.9085 9.99322 27.9419 10.3136 26.5448C10.6072 25.2811 12.2001 18.5182 12.2001 18.5182C12.2001 18.5182 11.7196 17.5482 11.7196 16.1244C11.7196 13.8819 13.0188 12.2001 14.6472 12.2001C16.0265 12.2001 16.6939 13.2323 16.6939 14.4693C16.6939 15.8485 15.813 17.9219 15.3502 19.853C14.9676 21.4636 16.16 22.7806 17.744 22.7806C20.6182 22.7806 22.8162 19.7551 22.8162 15.3947C22.8162 11.5238 20.0398 8.82749 16.0621 8.82749C11.4615 8.82749 8.7652 12.2713 8.7652 15.8308C8.7652 17.21 9.29912 18.705 9.95762 19.5148C10.0911 19.675 10.1 19.8174 10.0644 19.9775C9.94872 20.4848 9.66397 21.5882 9.61057 21.8107C9.54828 22.1043 9.37031 22.1666 9.06775 22.0242C7.04775 21.081 5.78414 18.1444 5.78414 15.7685C5.78414 10.6784 9.47709 5.99771 16.4537 5.99771C22.0509 5.99771 26.4024 9.98432 26.4024 15.3235C26.4024 20.6627 22.8963 25.3701 18.0287 25.3701C16.3914 25.3701 14.8519 24.5159 14.3358 23.5103C14.3358 23.5103 13.526 26.5893 13.3302 27.3545C12.9743 28.7605 11.9865 30.5136 11.328 31.5903C12.8408 32.053 14.4337 32.3111 16.1155 32.3111C25.032 32.3111 32.2577 25.0854 32.2577 16.1689C32.2844 7.22573 25.0587 0 16.1422 0Z\" fill=\"#BCBEC0\"></path></svg>					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 08:17:22', '2023-10-02 08:17:22', '', 13, 'https://av-advertising.com/beyondc/?p=178', 0, 'revision', '', 0),
(179, 1, '2023-10-02 08:17:22', '2023-10-02 08:17:22', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n															<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<p>it’s time we inspire those who inspired us</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.8677 32.2932C25.7779 32.2932 33.001 25.0701 33.001 16.1599C33.001 7.24974 25.7779 0.0266113 16.8677 0.0266113C7.95751 0.0266113 0.734375 7.24974 0.734375 16.1599C0.734375 25.0701 7.95751 32.2932 16.8677 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M27.6173 16.1601C27.6173 14.8609 26.5672 13.8108 25.268 13.8108C24.6362 13.8108 24.0578 14.06 23.6395 14.4693C22.0289 13.3125 19.8131 12.5561 17.3482 12.476L18.416 7.43047L21.9132 8.17795C21.9577 9.06782 22.6874 9.77972 23.5862 9.77972C24.4849 9.77972 25.268 9.02333 25.268 8.09787C25.268 7.1724 24.5116 6.41602 23.5862 6.41602C22.9277 6.41602 22.3581 6.79866 22.0823 7.35038L18.1758 6.5228C18.069 6.4961 17.9533 6.5228 17.8554 6.58509C17.7575 6.64738 17.6952 6.74527 17.6774 6.85205L16.485 12.476C13.9845 12.5472 11.7331 13.2947 10.1047 14.4693C9.68643 14.06 9.10802 13.8108 8.47622 13.8108C7.17701 13.8108 6.12695 14.8609 6.12695 16.1601C6.12695 17.1122 6.69647 17.9398 7.51514 18.3046C7.47955 18.536 7.46175 18.7763 7.46175 19.0165C7.46175 22.6383 11.6708 25.566 16.8677 25.566C22.0645 25.566 26.2736 22.6294 26.2736 19.0165C26.2736 18.7763 26.2558 18.5449 26.2202 18.3135C27.0478 17.9487 27.6173 17.1211 27.6173 16.1601ZM11.484 17.8419C11.484 16.9165 12.2403 16.1601 13.1658 16.1601C14.0913 16.1601 14.8477 16.9165 14.8477 17.8419C14.8477 18.7674 14.0913 19.5238 13.1658 19.5238C12.2403 19.5238 11.484 18.7674 11.484 17.8419ZM20.8543 22.2824C19.7064 23.4303 17.5084 23.5193 16.8677 23.5193C16.227 23.5193 14.0201 23.4303 12.881 22.2824C12.712 22.1133 12.712 21.8374 12.881 21.6683C13.0501 21.4993 13.326 21.4993 13.4951 21.6683C14.2159 22.3891 15.7642 22.6472 16.8677 22.6472C17.9711 22.6472 19.5195 22.3891 20.2403 21.6683C20.4093 21.4993 20.6852 21.4993 20.8543 21.6683C21.0234 21.8374 21.0234 22.1133 20.8543 22.2824ZM20.5606 19.5238C19.6351 19.5238 18.8788 18.7674 18.8788 17.8419C18.8788 16.9165 19.6351 16.1601 20.5606 16.1601C21.4861 16.1601 22.2425 16.9165 22.2425 17.8419C22.2425 18.7674 21.4861 19.5238 20.5606 19.5238Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.1422 0C7.22573 0 0 7.22573 0 16.1422C0 22.9853 4.25357 28.8317 10.2602 31.181C10.1178 29.9085 9.99322 27.9419 10.3136 26.5448C10.6072 25.2811 12.2001 18.5182 12.2001 18.5182C12.2001 18.5182 11.7196 17.5482 11.7196 16.1244C11.7196 13.8819 13.0188 12.2001 14.6472 12.2001C16.0265 12.2001 16.6939 13.2323 16.6939 14.4693C16.6939 15.8485 15.813 17.9219 15.3502 19.853C14.9676 21.4636 16.16 22.7806 17.744 22.7806C20.6182 22.7806 22.8162 19.7551 22.8162 15.3947C22.8162 11.5238 20.0398 8.82749 16.0621 8.82749C11.4615 8.82749 8.7652 12.2713 8.7652 15.8308C8.7652 17.21 9.29912 18.705 9.95762 19.5148C10.0911 19.675 10.1 19.8174 10.0644 19.9775C9.94872 20.4848 9.66397 21.5882 9.61057 21.8107C9.54828 22.1043 9.37031 22.1666 9.06775 22.0242C7.04775 21.081 5.78414 18.1444 5.78414 15.7685C5.78414 10.6784 9.47709 5.99771 16.4537 5.99771C22.0509 5.99771 26.4024 9.98432 26.4024 15.3235C26.4024 20.6627 22.8963 25.3701 18.0287 25.3701C16.3914 25.3701 14.8519 24.5159 14.3358 23.5103C14.3358 23.5103 13.526 26.5893 13.3302 27.3545C12.9743 28.7605 11.9865 30.5136 11.328 31.5903C12.8408 32.053 14.4337 32.3111 16.1155 32.3111C25.032 32.3111 32.2577 25.0854 32.2577 16.1689C32.2844 7.22573 25.0587 0 16.1422 0Z\" fill=\"#BCBEC0\"></path></svg>					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 08:17:22', '2023-10-02 08:17:22', '', 13, 'https://av-advertising.com/beyondc/?p=179', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(180, 1, '2023-10-02 08:17:23', '2023-10-02 08:17:23', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n															<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<p>it’s time we inspire those who inspired us</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.8677 32.2932C25.7779 32.2932 33.001 25.0701 33.001 16.1599C33.001 7.24974 25.7779 0.0266113 16.8677 0.0266113C7.95751 0.0266113 0.734375 7.24974 0.734375 16.1599C0.734375 25.0701 7.95751 32.2932 16.8677 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M27.6173 16.1601C27.6173 14.8609 26.5672 13.8108 25.268 13.8108C24.6362 13.8108 24.0578 14.06 23.6395 14.4693C22.0289 13.3125 19.8131 12.5561 17.3482 12.476L18.416 7.43047L21.9132 8.17795C21.9577 9.06782 22.6874 9.77972 23.5862 9.77972C24.4849 9.77972 25.268 9.02333 25.268 8.09787C25.268 7.1724 24.5116 6.41602 23.5862 6.41602C22.9277 6.41602 22.3581 6.79866 22.0823 7.35038L18.1758 6.5228C18.069 6.4961 17.9533 6.5228 17.8554 6.58509C17.7575 6.64738 17.6952 6.74527 17.6774 6.85205L16.485 12.476C13.9845 12.5472 11.7331 13.2947 10.1047 14.4693C9.68643 14.06 9.10802 13.8108 8.47622 13.8108C7.17701 13.8108 6.12695 14.8609 6.12695 16.1601C6.12695 17.1122 6.69647 17.9398 7.51514 18.3046C7.47955 18.536 7.46175 18.7763 7.46175 19.0165C7.46175 22.6383 11.6708 25.566 16.8677 25.566C22.0645 25.566 26.2736 22.6294 26.2736 19.0165C26.2736 18.7763 26.2558 18.5449 26.2202 18.3135C27.0478 17.9487 27.6173 17.1211 27.6173 16.1601ZM11.484 17.8419C11.484 16.9165 12.2403 16.1601 13.1658 16.1601C14.0913 16.1601 14.8477 16.9165 14.8477 17.8419C14.8477 18.7674 14.0913 19.5238 13.1658 19.5238C12.2403 19.5238 11.484 18.7674 11.484 17.8419ZM20.8543 22.2824C19.7064 23.4303 17.5084 23.5193 16.8677 23.5193C16.227 23.5193 14.0201 23.4303 12.881 22.2824C12.712 22.1133 12.712 21.8374 12.881 21.6683C13.0501 21.4993 13.326 21.4993 13.4951 21.6683C14.2159 22.3891 15.7642 22.6472 16.8677 22.6472C17.9711 22.6472 19.5195 22.3891 20.2403 21.6683C20.4093 21.4993 20.6852 21.4993 20.8543 21.6683C21.0234 21.8374 21.0234 22.1133 20.8543 22.2824ZM20.5606 19.5238C19.6351 19.5238 18.8788 18.7674 18.8788 17.8419C18.8788 16.9165 19.6351 16.1601 20.5606 16.1601C21.4861 16.1601 22.2425 16.9165 22.2425 17.8419C22.2425 18.7674 21.4861 19.5238 20.5606 19.5238Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.1422 0C7.22573 0 0 7.22573 0 16.1422C0 22.9853 4.25357 28.8317 10.2602 31.181C10.1178 29.9085 9.99322 27.9419 10.3136 26.5448C10.6072 25.2811 12.2001 18.5182 12.2001 18.5182C12.2001 18.5182 11.7196 17.5482 11.7196 16.1244C11.7196 13.8819 13.0188 12.2001 14.6472 12.2001C16.0265 12.2001 16.6939 13.2323 16.6939 14.4693C16.6939 15.8485 15.813 17.9219 15.3502 19.853C14.9676 21.4636 16.16 22.7806 17.744 22.7806C20.6182 22.7806 22.8162 19.7551 22.8162 15.3947C22.8162 11.5238 20.0398 8.82749 16.0621 8.82749C11.4615 8.82749 8.7652 12.2713 8.7652 15.8308C8.7652 17.21 9.29912 18.705 9.95762 19.5148C10.0911 19.675 10.1 19.8174 10.0644 19.9775C9.94872 20.4848 9.66397 21.5882 9.61057 21.8107C9.54828 22.1043 9.37031 22.1666 9.06775 22.0242C7.04775 21.081 5.78414 18.1444 5.78414 15.7685C5.78414 10.6784 9.47709 5.99771 16.4537 5.99771C22.0509 5.99771 26.4024 9.98432 26.4024 15.3235C26.4024 20.6627 22.8963 25.3701 18.0287 25.3701C16.3914 25.3701 14.8519 24.5159 14.3358 23.5103C14.3358 23.5103 13.526 26.5893 13.3302 27.3545C12.9743 28.7605 11.9865 30.5136 11.328 31.5903C12.8408 32.053 14.4337 32.3111 16.1155 32.3111C25.032 32.3111 32.2577 25.0854 32.2577 16.1689C32.2844 7.22573 25.0587 0 16.1422 0Z\" fill=\"#BCBEC0\"></path></svg>					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 08:17:23', '2023-10-02 08:17:23', '', 13, 'https://av-advertising.com/beyondc/?p=180', 0, 'revision', '', 0),
(181, 1, '2023-10-02 08:18:27', '2023-10-02 08:18:27', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n															<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<p>it’s time we inspire those who inspired us</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.8677 32.2932C25.7779 32.2932 33.001 25.0701 33.001 16.1599C33.001 7.24974 25.7779 0.0266113 16.8677 0.0266113C7.95751 0.0266113 0.734375 7.24974 0.734375 16.1599C0.734375 25.0701 7.95751 32.2932 16.8677 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M27.6173 16.1601C27.6173 14.8609 26.5672 13.8108 25.268 13.8108C24.6362 13.8108 24.0578 14.06 23.6395 14.4693C22.0289 13.3125 19.8131 12.5561 17.3482 12.476L18.416 7.43047L21.9132 8.17795C21.9577 9.06782 22.6874 9.77972 23.5862 9.77972C24.4849 9.77972 25.268 9.02333 25.268 8.09787C25.268 7.1724 24.5116 6.41602 23.5862 6.41602C22.9277 6.41602 22.3581 6.79866 22.0823 7.35038L18.1758 6.5228C18.069 6.4961 17.9533 6.5228 17.8554 6.58509C17.7575 6.64738 17.6952 6.74527 17.6774 6.85205L16.485 12.476C13.9845 12.5472 11.7331 13.2947 10.1047 14.4693C9.68643 14.06 9.10802 13.8108 8.47622 13.8108C7.17701 13.8108 6.12695 14.8609 6.12695 16.1601C6.12695 17.1122 6.69647 17.9398 7.51514 18.3046C7.47955 18.536 7.46175 18.7763 7.46175 19.0165C7.46175 22.6383 11.6708 25.566 16.8677 25.566C22.0645 25.566 26.2736 22.6294 26.2736 19.0165C26.2736 18.7763 26.2558 18.5449 26.2202 18.3135C27.0478 17.9487 27.6173 17.1211 27.6173 16.1601ZM11.484 17.8419C11.484 16.9165 12.2403 16.1601 13.1658 16.1601C14.0913 16.1601 14.8477 16.9165 14.8477 17.8419C14.8477 18.7674 14.0913 19.5238 13.1658 19.5238C12.2403 19.5238 11.484 18.7674 11.484 17.8419ZM20.8543 22.2824C19.7064 23.4303 17.5084 23.5193 16.8677 23.5193C16.227 23.5193 14.0201 23.4303 12.881 22.2824C12.712 22.1133 12.712 21.8374 12.881 21.6683C13.0501 21.4993 13.326 21.4993 13.4951 21.6683C14.2159 22.3891 15.7642 22.6472 16.8677 22.6472C17.9711 22.6472 19.5195 22.3891 20.2403 21.6683C20.4093 21.4993 20.6852 21.4993 20.8543 21.6683C21.0234 21.8374 21.0234 22.1133 20.8543 22.2824ZM20.5606 19.5238C19.6351 19.5238 18.8788 18.7674 18.8788 17.8419C18.8788 16.9165 19.6351 16.1601 20.5606 16.1601C21.4861 16.1601 22.2425 16.9165 22.2425 17.8419C22.2425 18.7674 21.4861 19.5238 20.5606 19.5238Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.1422 0C7.22573 0 0 7.22573 0 16.1422C0 22.9853 4.25357 28.8317 10.2602 31.181C10.1178 29.9085 9.99322 27.9419 10.3136 26.5448C10.6072 25.2811 12.2001 18.5182 12.2001 18.5182C12.2001 18.5182 11.7196 17.5482 11.7196 16.1244C11.7196 13.8819 13.0188 12.2001 14.6472 12.2001C16.0265 12.2001 16.6939 13.2323 16.6939 14.4693C16.6939 15.8485 15.813 17.9219 15.3502 19.853C14.9676 21.4636 16.16 22.7806 17.744 22.7806C20.6182 22.7806 22.8162 19.7551 22.8162 15.3947C22.8162 11.5238 20.0398 8.82749 16.0621 8.82749C11.4615 8.82749 8.7652 12.2713 8.7652 15.8308C8.7652 17.21 9.29912 18.705 9.95762 19.5148C10.0911 19.675 10.1 19.8174 10.0644 19.9775C9.94872 20.4848 9.66397 21.5882 9.61057 21.8107C9.54828 22.1043 9.37031 22.1666 9.06775 22.0242C7.04775 21.081 5.78414 18.1444 5.78414 15.7685C5.78414 10.6784 9.47709 5.99771 16.4537 5.99771C22.0509 5.99771 26.4024 9.98432 26.4024 15.3235C26.4024 20.6627 22.8963 25.3701 18.0287 25.3701C16.3914 25.3701 14.8519 24.5159 14.3358 23.5103C14.3358 23.5103 13.526 26.5893 13.3302 27.3545C12.9743 28.7605 11.9865 30.5136 11.328 31.5903C12.8408 32.053 14.4337 32.3111 16.1155 32.3111C25.032 32.3111 32.2577 25.0854 32.2577 16.1689C32.2844 7.22573 25.0587 0 16.1422 0Z\" fill=\"#BCBEC0\"></path></svg>					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 08:18:27', '2023-10-02 08:18:27', '', 13, 'https://av-advertising.com/beyondc/?p=181', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(182, 1, '2023-10-02 08:18:27', '2023-10-02 08:18:27', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n															<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<p>it’s time we inspire those who inspired us</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.8677 32.2932C25.7779 32.2932 33.001 25.0701 33.001 16.1599C33.001 7.24974 25.7779 0.0266113 16.8677 0.0266113C7.95751 0.0266113 0.734375 7.24974 0.734375 16.1599C0.734375 25.0701 7.95751 32.2932 16.8677 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M27.6173 16.1601C27.6173 14.8609 26.5672 13.8108 25.268 13.8108C24.6362 13.8108 24.0578 14.06 23.6395 14.4693C22.0289 13.3125 19.8131 12.5561 17.3482 12.476L18.416 7.43047L21.9132 8.17795C21.9577 9.06782 22.6874 9.77972 23.5862 9.77972C24.4849 9.77972 25.268 9.02333 25.268 8.09787C25.268 7.1724 24.5116 6.41602 23.5862 6.41602C22.9277 6.41602 22.3581 6.79866 22.0823 7.35038L18.1758 6.5228C18.069 6.4961 17.9533 6.5228 17.8554 6.58509C17.7575 6.64738 17.6952 6.74527 17.6774 6.85205L16.485 12.476C13.9845 12.5472 11.7331 13.2947 10.1047 14.4693C9.68643 14.06 9.10802 13.8108 8.47622 13.8108C7.17701 13.8108 6.12695 14.8609 6.12695 16.1601C6.12695 17.1122 6.69647 17.9398 7.51514 18.3046C7.47955 18.536 7.46175 18.7763 7.46175 19.0165C7.46175 22.6383 11.6708 25.566 16.8677 25.566C22.0645 25.566 26.2736 22.6294 26.2736 19.0165C26.2736 18.7763 26.2558 18.5449 26.2202 18.3135C27.0478 17.9487 27.6173 17.1211 27.6173 16.1601ZM11.484 17.8419C11.484 16.9165 12.2403 16.1601 13.1658 16.1601C14.0913 16.1601 14.8477 16.9165 14.8477 17.8419C14.8477 18.7674 14.0913 19.5238 13.1658 19.5238C12.2403 19.5238 11.484 18.7674 11.484 17.8419ZM20.8543 22.2824C19.7064 23.4303 17.5084 23.5193 16.8677 23.5193C16.227 23.5193 14.0201 23.4303 12.881 22.2824C12.712 22.1133 12.712 21.8374 12.881 21.6683C13.0501 21.4993 13.326 21.4993 13.4951 21.6683C14.2159 22.3891 15.7642 22.6472 16.8677 22.6472C17.9711 22.6472 19.5195 22.3891 20.2403 21.6683C20.4093 21.4993 20.6852 21.4993 20.8543 21.6683C21.0234 21.8374 21.0234 22.1133 20.8543 22.2824ZM20.5606 19.5238C19.6351 19.5238 18.8788 18.7674 18.8788 17.8419C18.8788 16.9165 19.6351 16.1601 20.5606 16.1601C21.4861 16.1601 22.2425 16.9165 22.2425 17.8419C22.2425 18.7674 21.4861 19.5238 20.5606 19.5238Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.1422 0C7.22573 0 0 7.22573 0 16.1422C0 22.9853 4.25357 28.8317 10.2602 31.181C10.1178 29.9085 9.99322 27.9419 10.3136 26.5448C10.6072 25.2811 12.2001 18.5182 12.2001 18.5182C12.2001 18.5182 11.7196 17.5482 11.7196 16.1244C11.7196 13.8819 13.0188 12.2001 14.6472 12.2001C16.0265 12.2001 16.6939 13.2323 16.6939 14.4693C16.6939 15.8485 15.813 17.9219 15.3502 19.853C14.9676 21.4636 16.16 22.7806 17.744 22.7806C20.6182 22.7806 22.8162 19.7551 22.8162 15.3947C22.8162 11.5238 20.0398 8.82749 16.0621 8.82749C11.4615 8.82749 8.7652 12.2713 8.7652 15.8308C8.7652 17.21 9.29912 18.705 9.95762 19.5148C10.0911 19.675 10.1 19.8174 10.0644 19.9775C9.94872 20.4848 9.66397 21.5882 9.61057 21.8107C9.54828 22.1043 9.37031 22.1666 9.06775 22.0242C7.04775 21.081 5.78414 18.1444 5.78414 15.7685C5.78414 10.6784 9.47709 5.99771 16.4537 5.99771C22.0509 5.99771 26.4024 9.98432 26.4024 15.3235C26.4024 20.6627 22.8963 25.3701 18.0287 25.3701C16.3914 25.3701 14.8519 24.5159 14.3358 23.5103C14.3358 23.5103 13.526 26.5893 13.3302 27.3545C12.9743 28.7605 11.9865 30.5136 11.328 31.5903C12.8408 32.053 14.4337 32.3111 16.1155 32.3111C25.032 32.3111 32.2577 25.0854 32.2577 16.1689C32.2844 7.22573 25.0587 0 16.1422 0Z\" fill=\"#BCBEC0\"></path></svg>					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 08:18:27', '2023-10-02 08:18:27', '', 13, 'https://av-advertising.com/beyondc/?p=182', 0, 'revision', '', 0),
(183, 1, '2023-10-02 08:18:27', '2023-10-02 08:18:27', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n															<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<p>it’s time we inspire those who inspired us</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.1422 0C7.22573 0 0 7.22573 0 16.1422C0 22.9853 4.25357 28.8317 10.2602 31.181C10.1178 29.9085 9.99322 27.9419 10.3136 26.5448C10.6072 25.2811 12.2001 18.5182 12.2001 18.5182C12.2001 18.5182 11.7196 17.5482 11.7196 16.1244C11.7196 13.8819 13.0188 12.2001 14.6472 12.2001C16.0265 12.2001 16.6939 13.2323 16.6939 14.4693C16.6939 15.8485 15.813 17.9219 15.3502 19.853C14.9676 21.4636 16.16 22.7806 17.744 22.7806C20.6182 22.7806 22.8162 19.7551 22.8162 15.3947C22.8162 11.5238 20.0398 8.82749 16.0621 8.82749C11.4615 8.82749 8.7652 12.2713 8.7652 15.8308C8.7652 17.21 9.29912 18.705 9.95762 19.5148C10.0911 19.675 10.1 19.8174 10.0644 19.9775C9.94872 20.4848 9.66397 21.5882 9.61057 21.8107C9.54828 22.1043 9.37031 22.1666 9.06775 22.0242C7.04775 21.081 5.78414 18.1444 5.78414 15.7685C5.78414 10.6784 9.47709 5.99771 16.4537 5.99771C22.0509 5.99771 26.4024 9.98432 26.4024 15.3235C26.4024 20.6627 22.8963 25.3701 18.0287 25.3701C16.3914 25.3701 14.8519 24.5159 14.3358 23.5103C14.3358 23.5103 13.526 26.5893 13.3302 27.3545C12.9743 28.7605 11.9865 30.5136 11.328 31.5903C12.8408 32.053 14.4337 32.3111 16.1155 32.3111C25.032 32.3111 32.2577 25.0854 32.2577 16.1689C32.2844 7.22573 25.0587 0 16.1422 0Z\" fill=\"#BCBEC0\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"33\" viewBox=\"0 0 34 33\" fill=\"none\"><path d=\"M17.0693 32.2932C25.9795 32.2932 33.2026 25.0701 33.2026 16.1599C33.2026 7.24974 25.9795 0.0266113 17.0693 0.0266113C8.15916 0.0266113 0.936035 7.24974 0.936035 16.1599C0.936035 25.0701 8.15916 32.2932 17.0693 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M18.315 13.9531C18.5819 13.6595 18.7955 13.3569 19.0714 13.0988C19.9078 12.3069 20.8956 11.9153 22.0524 11.9242C22.6842 11.9242 23.316 11.9776 23.93 12.1556C25.3271 12.556 26.1458 13.526 26.5285 14.8964C26.8221 15.9197 26.8755 16.9787 26.8755 18.0287C26.8755 20.2534 26.8755 22.487 26.8755 24.7116C26.8755 24.9163 26.8132 24.9786 26.6085 24.9697C25.4606 24.9608 24.3127 24.9608 23.1648 24.9697C22.9601 24.9697 22.9156 24.9074 22.9156 24.7205C22.9156 22.6026 22.9156 20.4758 22.9156 18.358C22.9156 17.824 22.88 17.299 22.7287 16.7829C22.4529 15.8307 21.7766 15.3502 20.7799 15.3947C19.4184 15.4659 18.7065 16.1422 18.5374 17.5215C18.493 17.8507 18.4752 18.18 18.4752 18.5181C18.4752 20.5826 18.4752 22.6382 18.4752 24.7027C18.4752 24.9074 18.4218 24.9697 18.2171 24.9697C17.0603 24.9608 15.9034 24.9608 14.7466 24.9697C14.5597 24.9697 14.5063 24.9252 14.5063 24.7294C14.5063 20.6449 14.5063 16.5604 14.5063 12.4848C14.5063 12.2802 14.5686 12.2357 14.7644 12.2357C15.8589 12.2357 16.9624 12.2446 18.0569 12.2357C18.2616 12.2357 18.315 12.298 18.3061 12.4937C18.2972 12.9832 18.3061 13.4726 18.3061 13.962L18.315 13.9531Z\" fill=\"#FDFDFD\"></path><path d=\"M12.0235 18.625C12.0235 20.645 12.0235 22.665 12.0235 24.685C12.0235 24.9074 11.9701 24.9786 11.7387 24.9786C10.5908 24.9697 9.44288 24.9697 8.29495 24.9786C8.10808 24.9786 8.05469 24.9341 8.05469 24.7473C8.05469 20.6539 8.05469 16.5694 8.05469 12.476C8.05469 12.3069 8.09918 12.2446 8.27715 12.2446C9.44288 12.2446 10.6086 12.2535 11.7654 12.2446C11.9879 12.2446 12.0235 12.3336 12.0146 12.5205C12.0146 14.5583 12.0146 16.5961 12.0146 18.6339L12.0235 18.625Z\" fill=\"#FDFDFD\"></path><path d=\"M12.3441 8.18675C12.3441 9.45926 11.3118 10.4915 10.0482 10.4915C8.80238 10.4915 7.76123 9.45926 7.76123 8.21345C7.76123 6.94984 8.79348 5.90869 10.0571 5.90869C11.3118 5.90869 12.3441 6.94094 12.3441 8.18675Z\" fill=\"#FDFDFD\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"33\" viewBox=\"0 0 34 33\" fill=\"none\"><path d=\"M33.1293 16.1599C33.1293 7.25234 25.9125 0.0266113 17.0049 0.0266113C8.09731 0.0266113 0.871582 7.25234 0.871582 16.1599C0.871582 24.2132 6.77141 30.8872 14.4866 32.0975V20.8228H10.3932V16.1599H14.4866V12.6093C14.4866 8.56934 16.8981 6.33577 20.5821 6.33577C22.3441 6.33577 24.195 6.64723 24.195 6.64723V10.616H22.1572C20.155 10.616 19.5321 11.8619 19.5321 13.1344V16.1599H24.0081L23.2962 20.8228H19.541V32.0975C27.2562 30.8872 33.156 24.2132 33.156 16.1599H33.1293Z\" fill=\"#BCBEC0\"></path><path d=\"M23.2786 20.823L23.9905 16.1601H19.5144V13.1345C19.5144 11.862 20.1373 10.6162 22.1395 10.6162H24.1773V6.64739C24.1773 6.64739 22.3353 6.33594 20.5645 6.33594C16.8804 6.33594 14.4689 8.56951 14.4689 12.6095V16.1601H10.3755V20.823H14.4689V32.0976C15.2876 32.2222 16.1329 32.2934 16.9872 32.2934C17.8415 32.2934 18.6869 32.2222 19.5055 32.0976V20.823H23.2608H23.2786Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"33\" viewBox=\"0 0 34 33\" fill=\"none\"><path d=\"M16.9321 32.2932C25.8423 32.2932 33.0654 25.0701 33.0654 16.1599C33.0654 7.24974 25.8423 0.0266113 16.9321 0.0266113C8.02196 0.0266113 0.798828 7.24974 0.798828 16.1599C0.798828 25.0701 8.02196 32.2932 16.9321 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M16.9318 7.83093C19.6459 7.83093 19.9663 7.83983 21.0341 7.89322C22.0219 7.93771 22.5647 8.10679 22.9206 8.24027C23.3923 8.42714 23.7304 8.64071 24.0864 8.99666C24.4423 9.3526 24.6648 9.69075 24.8427 10.1624C24.9851 10.5183 25.1453 11.0612 25.1898 12.0489C25.2343 13.1167 25.2521 13.4371 25.2521 16.1512C25.2521 18.8653 25.2432 19.1856 25.1898 20.2535C25.1453 21.2412 24.9762 21.7841 24.8427 22.14C24.6559 22.6116 24.4423 22.9498 24.0864 23.3057C23.7304 23.6617 23.3923 23.8841 22.9206 24.0621C22.5647 24.2045 22.0219 24.3647 21.0341 24.4092C19.9663 24.4537 19.6459 24.4715 16.9318 24.4715C14.2177 24.4715 13.8974 24.4626 12.8295 24.4092C11.8418 24.3647 11.299 24.1956 10.943 24.0621C10.4714 23.8752 10.1332 23.6617 9.77729 23.3057C9.42134 22.9498 9.19887 22.6116 9.0209 22.14C8.87852 21.7841 8.71834 21.2412 8.67385 20.2535C8.62935 19.1856 8.61155 18.8653 8.61155 16.1512C8.61155 13.4371 8.62046 13.1167 8.67385 12.0489C8.71834 11.0612 8.88742 10.5183 9.0209 10.1624C9.20777 9.69075 9.42134 9.3526 9.77729 8.99666C10.1332 8.64071 10.4714 8.41824 10.943 8.24027C11.299 8.09789 11.8418 7.93771 12.8295 7.89322C13.8974 7.84873 14.2177 7.83093 16.9318 7.83093ZM16.9318 5.9978C14.1732 5.9978 13.8262 6.0067 12.7406 6.06009C11.6638 6.11349 10.9252 6.28256 10.2756 6.53172C9.60821 6.78979 9.03869 7.13683 8.47808 7.70635C7.91746 8.26697 7.57042 8.83648 7.30346 9.50388C7.05429 10.1535 6.87631 10.8921 6.83181 11.9688C6.77842 13.0545 6.76953 13.4015 6.76953 16.1601C6.76953 18.9187 6.77842 19.2657 6.83181 20.3514C6.88521 21.4281 7.05429 22.1667 7.30346 22.8163C7.56152 23.4837 7.90856 24.0532 8.47808 24.6138C9.03869 25.1745 9.60821 25.5215 10.2756 25.7885C10.9252 26.0376 11.6638 26.2156 12.7406 26.2601C13.8262 26.3135 14.1732 26.3224 16.9318 26.3224C19.6904 26.3224 20.0375 26.3135 21.1231 26.2601C22.1998 26.2067 22.9384 26.0376 23.588 25.7885C24.2554 25.5304 24.8249 25.1834 25.3856 24.6138C25.9462 24.0532 26.2932 23.4837 26.5602 22.8163C26.8094 22.1667 26.9873 21.4281 27.0318 20.3514C27.0852 19.2657 27.0941 18.9187 27.0941 16.1601C27.0941 13.4015 27.0852 13.0545 27.0318 11.9688C26.9784 10.8921 26.8094 10.1535 26.5602 9.50388C26.3021 8.83648 25.9551 8.26697 25.3856 7.70635C24.8249 7.14573 24.2554 6.79868 23.588 6.53172C22.9384 6.28256 22.1998 6.10459 21.1231 6.06009C20.0375 6.0067 19.6904 5.9978 16.9318 5.9978Z\" fill=\"white\"></path><path d=\"M16.9319 10.9453C14.0487 10.9453 11.7173 13.2768 11.7173 16.1599C11.7173 19.0431 14.0487 21.3746 16.9319 21.3746C19.8151 21.3746 22.1465 19.0431 22.1465 16.1599C22.1465 13.2768 19.8151 10.9453 16.9319 10.9453ZM16.9319 19.5503C15.0632 19.5503 13.5504 18.0376 13.5504 16.1688C13.5504 14.3001 15.0632 12.7873 16.9319 12.7873C18.8006 12.7873 20.3134 14.3001 20.3134 16.1688C20.3134 18.0376 18.8006 19.5503 16.9319 19.5503Z\" fill=\"white\"></path><path d=\"M22.3602 11.9597C23.0335 11.9597 23.5794 11.4139 23.5794 10.7406C23.5794 10.0673 23.0335 9.52148 22.3602 9.52148C21.6869 9.52148 21.1411 10.0673 21.1411 10.7406C21.1411 11.4139 21.6869 11.9597 22.3602 11.9597Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.8677 32.2932C25.7779 32.2932 33.001 25.0701 33.001 16.1599C33.001 7.24974 25.7779 0.0266113 16.8677 0.0266113C7.95751 0.0266113 0.734375 7.24974 0.734375 16.1599C0.734375 25.0701 7.95751 32.2932 16.8677 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M27.6173 16.1601C27.6173 14.8609 26.5672 13.8108 25.268 13.8108C24.6362 13.8108 24.0578 14.06 23.6395 14.4693C22.0289 13.3125 19.8131 12.5561 17.3482 12.476L18.416 7.43047L21.9132 8.17795C21.9577 9.06782 22.6874 9.77972 23.5862 9.77972C24.4849 9.77972 25.268 9.02333 25.268 8.09787C25.268 7.1724 24.5116 6.41602 23.5862 6.41602C22.9277 6.41602 22.3581 6.79866 22.0823 7.35038L18.1758 6.5228C18.069 6.4961 17.9533 6.5228 17.8554 6.58509C17.7575 6.64738 17.6952 6.74527 17.6774 6.85205L16.485 12.476C13.9845 12.5472 11.7331 13.2947 10.1047 14.4693C9.68643 14.06 9.10802 13.8108 8.47622 13.8108C7.17701 13.8108 6.12695 14.8609 6.12695 16.1601C6.12695 17.1122 6.69647 17.9398 7.51514 18.3046C7.47955 18.536 7.46175 18.7763 7.46175 19.0165C7.46175 22.6383 11.6708 25.566 16.8677 25.566C22.0645 25.566 26.2736 22.6294 26.2736 19.0165C26.2736 18.7763 26.2558 18.5449 26.2202 18.3135C27.0478 17.9487 27.6173 17.1211 27.6173 16.1601ZM11.484 17.8419C11.484 16.9165 12.2403 16.1601 13.1658 16.1601C14.0913 16.1601 14.8477 16.9165 14.8477 17.8419C14.8477 18.7674 14.0913 19.5238 13.1658 19.5238C12.2403 19.5238 11.484 18.7674 11.484 17.8419ZM20.8543 22.2824C19.7064 23.4303 17.5084 23.5193 16.8677 23.5193C16.227 23.5193 14.0201 23.4303 12.881 22.2824C12.712 22.1133 12.712 21.8374 12.881 21.6683C13.0501 21.4993 13.326 21.4993 13.4951 21.6683C14.2159 22.3891 15.7642 22.6472 16.8677 22.6472C17.9711 22.6472 19.5195 22.3891 20.2403 21.6683C20.4093 21.4993 20.6852 21.4993 20.8543 21.6683C21.0234 21.8374 21.0234 22.1133 20.8543 22.2824ZM20.5606 19.5238C19.6351 19.5238 18.8788 18.7674 18.8788 17.8419C18.8788 16.9165 19.6351 16.1601 20.5606 16.1601C21.4861 16.1601 22.2425 16.9165 22.2425 17.8419C22.2425 18.7674 21.4861 19.5238 20.5606 19.5238Z\" fill=\"white\"></path></svg>					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 08:18:27', '2023-10-02 08:18:27', '', 13, 'https://av-advertising.com/beyondc/?p=183', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(185, 1, '2023-10-02 09:17:39', '2023-10-02 09:17:39', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n															<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<p>it’s time we inspire those who inspired us</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.1422 0C7.22573 0 0 7.22573 0 16.1422C0 22.9853 4.25357 28.8317 10.2602 31.181C10.1178 29.9085 9.99322 27.9419 10.3136 26.5448C10.6072 25.2811 12.2001 18.5182 12.2001 18.5182C12.2001 18.5182 11.7196 17.5482 11.7196 16.1244C11.7196 13.8819 13.0188 12.2001 14.6472 12.2001C16.0265 12.2001 16.6939 13.2323 16.6939 14.4693C16.6939 15.8485 15.813 17.9219 15.3502 19.853C14.9676 21.4636 16.16 22.7806 17.744 22.7806C20.6182 22.7806 22.8162 19.7551 22.8162 15.3947C22.8162 11.5238 20.0398 8.82749 16.0621 8.82749C11.4615 8.82749 8.7652 12.2713 8.7652 15.8308C8.7652 17.21 9.29912 18.705 9.95762 19.5148C10.0911 19.675 10.1 19.8174 10.0644 19.9775C9.94872 20.4848 9.66397 21.5882 9.61057 21.8107C9.54828 22.1043 9.37031 22.1666 9.06775 22.0242C7.04775 21.081 5.78414 18.1444 5.78414 15.7685C5.78414 10.6784 9.47709 5.99771 16.4537 5.99771C22.0509 5.99771 26.4024 9.98432 26.4024 15.3235C26.4024 20.6627 22.8963 25.3701 18.0287 25.3701C16.3914 25.3701 14.8519 24.5159 14.3358 23.5103C14.3358 23.5103 13.526 26.5893 13.3302 27.3545C12.9743 28.7605 11.9865 30.5136 11.328 31.5903C12.8408 32.053 14.4337 32.3111 16.1155 32.3111C25.032 32.3111 32.2577 25.0854 32.2577 16.1689C32.2844 7.22573 25.0587 0 16.1422 0Z\" fill=\"#BCBEC0\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"33\" viewBox=\"0 0 34 33\" fill=\"none\"><path d=\"M17.0693 32.2932C25.9795 32.2932 33.2026 25.0701 33.2026 16.1599C33.2026 7.24974 25.9795 0.0266113 17.0693 0.0266113C8.15916 0.0266113 0.936035 7.24974 0.936035 16.1599C0.936035 25.0701 8.15916 32.2932 17.0693 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M18.315 13.9531C18.5819 13.6595 18.7955 13.3569 19.0714 13.0988C19.9078 12.3069 20.8956 11.9153 22.0524 11.9242C22.6842 11.9242 23.316 11.9776 23.93 12.1556C25.3271 12.556 26.1458 13.526 26.5285 14.8964C26.8221 15.9197 26.8755 16.9787 26.8755 18.0287C26.8755 20.2534 26.8755 22.487 26.8755 24.7116C26.8755 24.9163 26.8132 24.9786 26.6085 24.9697C25.4606 24.9608 24.3127 24.9608 23.1648 24.9697C22.9601 24.9697 22.9156 24.9074 22.9156 24.7205C22.9156 22.6026 22.9156 20.4758 22.9156 18.358C22.9156 17.824 22.88 17.299 22.7287 16.7829C22.4529 15.8307 21.7766 15.3502 20.7799 15.3947C19.4184 15.4659 18.7065 16.1422 18.5374 17.5215C18.493 17.8507 18.4752 18.18 18.4752 18.5181C18.4752 20.5826 18.4752 22.6382 18.4752 24.7027C18.4752 24.9074 18.4218 24.9697 18.2171 24.9697C17.0603 24.9608 15.9034 24.9608 14.7466 24.9697C14.5597 24.9697 14.5063 24.9252 14.5063 24.7294C14.5063 20.6449 14.5063 16.5604 14.5063 12.4848C14.5063 12.2802 14.5686 12.2357 14.7644 12.2357C15.8589 12.2357 16.9624 12.2446 18.0569 12.2357C18.2616 12.2357 18.315 12.298 18.3061 12.4937C18.2972 12.9832 18.3061 13.4726 18.3061 13.962L18.315 13.9531Z\" fill=\"#FDFDFD\"></path><path d=\"M12.0235 18.625C12.0235 20.645 12.0235 22.665 12.0235 24.685C12.0235 24.9074 11.9701 24.9786 11.7387 24.9786C10.5908 24.9697 9.44288 24.9697 8.29495 24.9786C8.10808 24.9786 8.05469 24.9341 8.05469 24.7473C8.05469 20.6539 8.05469 16.5694 8.05469 12.476C8.05469 12.3069 8.09918 12.2446 8.27715 12.2446C9.44288 12.2446 10.6086 12.2535 11.7654 12.2446C11.9879 12.2446 12.0235 12.3336 12.0146 12.5205C12.0146 14.5583 12.0146 16.5961 12.0146 18.6339L12.0235 18.625Z\" fill=\"#FDFDFD\"></path><path d=\"M12.3441 8.18675C12.3441 9.45926 11.3118 10.4915 10.0482 10.4915C8.80238 10.4915 7.76123 9.45926 7.76123 8.21345C7.76123 6.94984 8.79348 5.90869 10.0571 5.90869C11.3118 5.90869 12.3441 6.94094 12.3441 8.18675Z\" fill=\"#FDFDFD\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"33\" viewBox=\"0 0 34 33\" fill=\"none\"><path d=\"M33.1293 16.1599C33.1293 7.25234 25.9125 0.0266113 17.0049 0.0266113C8.09731 0.0266113 0.871582 7.25234 0.871582 16.1599C0.871582 24.2132 6.77141 30.8872 14.4866 32.0975V20.8228H10.3932V16.1599H14.4866V12.6093C14.4866 8.56934 16.8981 6.33577 20.5821 6.33577C22.3441 6.33577 24.195 6.64723 24.195 6.64723V10.616H22.1572C20.155 10.616 19.5321 11.8619 19.5321 13.1344V16.1599H24.0081L23.2962 20.8228H19.541V32.0975C27.2562 30.8872 33.156 24.2132 33.156 16.1599H33.1293Z\" fill=\"#BCBEC0\"></path><path d=\"M23.2786 20.823L23.9905 16.1601H19.5144V13.1345C19.5144 11.862 20.1373 10.6162 22.1395 10.6162H24.1773V6.64739C24.1773 6.64739 22.3353 6.33594 20.5645 6.33594C16.8804 6.33594 14.4689 8.56951 14.4689 12.6095V16.1601H10.3755V20.823H14.4689V32.0976C15.2876 32.2222 16.1329 32.2934 16.9872 32.2934C17.8415 32.2934 18.6869 32.2222 19.5055 32.0976V20.823H23.2608H23.2786Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"33\" viewBox=\"0 0 34 33\" fill=\"none\"><path d=\"M16.9321 32.2932C25.8423 32.2932 33.0654 25.0701 33.0654 16.1599C33.0654 7.24974 25.8423 0.0266113 16.9321 0.0266113C8.02196 0.0266113 0.798828 7.24974 0.798828 16.1599C0.798828 25.0701 8.02196 32.2932 16.9321 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M16.9318 7.83093C19.6459 7.83093 19.9663 7.83983 21.0341 7.89322C22.0219 7.93771 22.5647 8.10679 22.9206 8.24027C23.3923 8.42714 23.7304 8.64071 24.0864 8.99666C24.4423 9.3526 24.6648 9.69075 24.8427 10.1624C24.9851 10.5183 25.1453 11.0612 25.1898 12.0489C25.2343 13.1167 25.2521 13.4371 25.2521 16.1512C25.2521 18.8653 25.2432 19.1856 25.1898 20.2535C25.1453 21.2412 24.9762 21.7841 24.8427 22.14C24.6559 22.6116 24.4423 22.9498 24.0864 23.3057C23.7304 23.6617 23.3923 23.8841 22.9206 24.0621C22.5647 24.2045 22.0219 24.3647 21.0341 24.4092C19.9663 24.4537 19.6459 24.4715 16.9318 24.4715C14.2177 24.4715 13.8974 24.4626 12.8295 24.4092C11.8418 24.3647 11.299 24.1956 10.943 24.0621C10.4714 23.8752 10.1332 23.6617 9.77729 23.3057C9.42134 22.9498 9.19887 22.6116 9.0209 22.14C8.87852 21.7841 8.71834 21.2412 8.67385 20.2535C8.62935 19.1856 8.61155 18.8653 8.61155 16.1512C8.61155 13.4371 8.62046 13.1167 8.67385 12.0489C8.71834 11.0612 8.88742 10.5183 9.0209 10.1624C9.20777 9.69075 9.42134 9.3526 9.77729 8.99666C10.1332 8.64071 10.4714 8.41824 10.943 8.24027C11.299 8.09789 11.8418 7.93771 12.8295 7.89322C13.8974 7.84873 14.2177 7.83093 16.9318 7.83093ZM16.9318 5.9978C14.1732 5.9978 13.8262 6.0067 12.7406 6.06009C11.6638 6.11349 10.9252 6.28256 10.2756 6.53172C9.60821 6.78979 9.03869 7.13683 8.47808 7.70635C7.91746 8.26697 7.57042 8.83648 7.30346 9.50388C7.05429 10.1535 6.87631 10.8921 6.83181 11.9688C6.77842 13.0545 6.76953 13.4015 6.76953 16.1601C6.76953 18.9187 6.77842 19.2657 6.83181 20.3514C6.88521 21.4281 7.05429 22.1667 7.30346 22.8163C7.56152 23.4837 7.90856 24.0532 8.47808 24.6138C9.03869 25.1745 9.60821 25.5215 10.2756 25.7885C10.9252 26.0376 11.6638 26.2156 12.7406 26.2601C13.8262 26.3135 14.1732 26.3224 16.9318 26.3224C19.6904 26.3224 20.0375 26.3135 21.1231 26.2601C22.1998 26.2067 22.9384 26.0376 23.588 25.7885C24.2554 25.5304 24.8249 25.1834 25.3856 24.6138C25.9462 24.0532 26.2932 23.4837 26.5602 22.8163C26.8094 22.1667 26.9873 21.4281 27.0318 20.3514C27.0852 19.2657 27.0941 18.9187 27.0941 16.1601C27.0941 13.4015 27.0852 13.0545 27.0318 11.9688C26.9784 10.8921 26.8094 10.1535 26.5602 9.50388C26.3021 8.83648 25.9551 8.26697 25.3856 7.70635C24.8249 7.14573 24.2554 6.79868 23.588 6.53172C22.9384 6.28256 22.1998 6.10459 21.1231 6.06009C20.0375 6.0067 19.6904 5.9978 16.9318 5.9978Z\" fill=\"white\"></path><path d=\"M16.9319 10.9453C14.0487 10.9453 11.7173 13.2768 11.7173 16.1599C11.7173 19.0431 14.0487 21.3746 16.9319 21.3746C19.8151 21.3746 22.1465 19.0431 22.1465 16.1599C22.1465 13.2768 19.8151 10.9453 16.9319 10.9453ZM16.9319 19.5503C15.0632 19.5503 13.5504 18.0376 13.5504 16.1688C13.5504 14.3001 15.0632 12.7873 16.9319 12.7873C18.8006 12.7873 20.3134 14.3001 20.3134 16.1688C20.3134 18.0376 18.8006 19.5503 16.9319 19.5503Z\" fill=\"white\"></path><path d=\"M22.3602 11.9597C23.0335 11.9597 23.5794 11.4139 23.5794 10.7406C23.5794 10.0673 23.0335 9.52148 22.3602 9.52148C21.6869 9.52148 21.1411 10.0673 21.1411 10.7406C21.1411 11.4139 21.6869 11.9597 22.3602 11.9597Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.8677 32.2932C25.7779 32.2932 33.001 25.0701 33.001 16.1599C33.001 7.24974 25.7779 0.0266113 16.8677 0.0266113C7.95751 0.0266113 0.734375 7.24974 0.734375 16.1599C0.734375 25.0701 7.95751 32.2932 16.8677 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M27.6173 16.1601C27.6173 14.8609 26.5672 13.8108 25.268 13.8108C24.6362 13.8108 24.0578 14.06 23.6395 14.4693C22.0289 13.3125 19.8131 12.5561 17.3482 12.476L18.416 7.43047L21.9132 8.17795C21.9577 9.06782 22.6874 9.77972 23.5862 9.77972C24.4849 9.77972 25.268 9.02333 25.268 8.09787C25.268 7.1724 24.5116 6.41602 23.5862 6.41602C22.9277 6.41602 22.3581 6.79866 22.0823 7.35038L18.1758 6.5228C18.069 6.4961 17.9533 6.5228 17.8554 6.58509C17.7575 6.64738 17.6952 6.74527 17.6774 6.85205L16.485 12.476C13.9845 12.5472 11.7331 13.2947 10.1047 14.4693C9.68643 14.06 9.10802 13.8108 8.47622 13.8108C7.17701 13.8108 6.12695 14.8609 6.12695 16.1601C6.12695 17.1122 6.69647 17.9398 7.51514 18.3046C7.47955 18.536 7.46175 18.7763 7.46175 19.0165C7.46175 22.6383 11.6708 25.566 16.8677 25.566C22.0645 25.566 26.2736 22.6294 26.2736 19.0165C26.2736 18.7763 26.2558 18.5449 26.2202 18.3135C27.0478 17.9487 27.6173 17.1211 27.6173 16.1601ZM11.484 17.8419C11.484 16.9165 12.2403 16.1601 13.1658 16.1601C14.0913 16.1601 14.8477 16.9165 14.8477 17.8419C14.8477 18.7674 14.0913 19.5238 13.1658 19.5238C12.2403 19.5238 11.484 18.7674 11.484 17.8419ZM20.8543 22.2824C19.7064 23.4303 17.5084 23.5193 16.8677 23.5193C16.227 23.5193 14.0201 23.4303 12.881 22.2824C12.712 22.1133 12.712 21.8374 12.881 21.6683C13.0501 21.4993 13.326 21.4993 13.4951 21.6683C14.2159 22.3891 15.7642 22.6472 16.8677 22.6472C17.9711 22.6472 19.5195 22.3891 20.2403 21.6683C20.4093 21.4993 20.6852 21.4993 20.8543 21.6683C21.0234 21.8374 21.0234 22.1133 20.8543 22.2824ZM20.5606 19.5238C19.6351 19.5238 18.8788 18.7674 18.8788 17.8419C18.8788 16.9165 19.6351 16.1601 20.5606 16.1601C21.4861 16.1601 22.2425 16.9165 22.2425 17.8419C22.2425 18.7674 21.4861 19.5238 20.5606 19.5238Z\" fill=\"white\"></path></svg>					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 09:17:39', '2023-10-02 09:17:39', '', 13, 'https://av-advertising.com/beyondc/?p=185', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(186, 1, '2023-10-02 09:17:39', '2023-10-02 09:17:39', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n															<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<p>it’s time we inspire those who inspired us</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.1422 0C7.22573 0 0 7.22573 0 16.1422C0 22.9853 4.25357 28.8317 10.2602 31.181C10.1178 29.9085 9.99322 27.9419 10.3136 26.5448C10.6072 25.2811 12.2001 18.5182 12.2001 18.5182C12.2001 18.5182 11.7196 17.5482 11.7196 16.1244C11.7196 13.8819 13.0188 12.2001 14.6472 12.2001C16.0265 12.2001 16.6939 13.2323 16.6939 14.4693C16.6939 15.8485 15.813 17.9219 15.3502 19.853C14.9676 21.4636 16.16 22.7806 17.744 22.7806C20.6182 22.7806 22.8162 19.7551 22.8162 15.3947C22.8162 11.5238 20.0398 8.82749 16.0621 8.82749C11.4615 8.82749 8.7652 12.2713 8.7652 15.8308C8.7652 17.21 9.29912 18.705 9.95762 19.5148C10.0911 19.675 10.1 19.8174 10.0644 19.9775C9.94872 20.4848 9.66397 21.5882 9.61057 21.8107C9.54828 22.1043 9.37031 22.1666 9.06775 22.0242C7.04775 21.081 5.78414 18.1444 5.78414 15.7685C5.78414 10.6784 9.47709 5.99771 16.4537 5.99771C22.0509 5.99771 26.4024 9.98432 26.4024 15.3235C26.4024 20.6627 22.8963 25.3701 18.0287 25.3701C16.3914 25.3701 14.8519 24.5159 14.3358 23.5103C14.3358 23.5103 13.526 26.5893 13.3302 27.3545C12.9743 28.7605 11.9865 30.5136 11.328 31.5903C12.8408 32.053 14.4337 32.3111 16.1155 32.3111C25.032 32.3111 32.2577 25.0854 32.2577 16.1689C32.2844 7.22573 25.0587 0 16.1422 0Z\" fill=\"#BCBEC0\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"33\" viewBox=\"0 0 34 33\" fill=\"none\"><path d=\"M17.0693 32.2932C25.9795 32.2932 33.2026 25.0701 33.2026 16.1599C33.2026 7.24974 25.9795 0.0266113 17.0693 0.0266113C8.15916 0.0266113 0.936035 7.24974 0.936035 16.1599C0.936035 25.0701 8.15916 32.2932 17.0693 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M18.315 13.9531C18.5819 13.6595 18.7955 13.3569 19.0714 13.0988C19.9078 12.3069 20.8956 11.9153 22.0524 11.9242C22.6842 11.9242 23.316 11.9776 23.93 12.1556C25.3271 12.556 26.1458 13.526 26.5285 14.8964C26.8221 15.9197 26.8755 16.9787 26.8755 18.0287C26.8755 20.2534 26.8755 22.487 26.8755 24.7116C26.8755 24.9163 26.8132 24.9786 26.6085 24.9697C25.4606 24.9608 24.3127 24.9608 23.1648 24.9697C22.9601 24.9697 22.9156 24.9074 22.9156 24.7205C22.9156 22.6026 22.9156 20.4758 22.9156 18.358C22.9156 17.824 22.88 17.299 22.7287 16.7829C22.4529 15.8307 21.7766 15.3502 20.7799 15.3947C19.4184 15.4659 18.7065 16.1422 18.5374 17.5215C18.493 17.8507 18.4752 18.18 18.4752 18.5181C18.4752 20.5826 18.4752 22.6382 18.4752 24.7027C18.4752 24.9074 18.4218 24.9697 18.2171 24.9697C17.0603 24.9608 15.9034 24.9608 14.7466 24.9697C14.5597 24.9697 14.5063 24.9252 14.5063 24.7294C14.5063 20.6449 14.5063 16.5604 14.5063 12.4848C14.5063 12.2802 14.5686 12.2357 14.7644 12.2357C15.8589 12.2357 16.9624 12.2446 18.0569 12.2357C18.2616 12.2357 18.315 12.298 18.3061 12.4937C18.2972 12.9832 18.3061 13.4726 18.3061 13.962L18.315 13.9531Z\" fill=\"#FDFDFD\"></path><path d=\"M12.0235 18.625C12.0235 20.645 12.0235 22.665 12.0235 24.685C12.0235 24.9074 11.9701 24.9786 11.7387 24.9786C10.5908 24.9697 9.44288 24.9697 8.29495 24.9786C8.10808 24.9786 8.05469 24.9341 8.05469 24.7473C8.05469 20.6539 8.05469 16.5694 8.05469 12.476C8.05469 12.3069 8.09918 12.2446 8.27715 12.2446C9.44288 12.2446 10.6086 12.2535 11.7654 12.2446C11.9879 12.2446 12.0235 12.3336 12.0146 12.5205C12.0146 14.5583 12.0146 16.5961 12.0146 18.6339L12.0235 18.625Z\" fill=\"#FDFDFD\"></path><path d=\"M12.3441 8.18675C12.3441 9.45926 11.3118 10.4915 10.0482 10.4915C8.80238 10.4915 7.76123 9.45926 7.76123 8.21345C7.76123 6.94984 8.79348 5.90869 10.0571 5.90869C11.3118 5.90869 12.3441 6.94094 12.3441 8.18675Z\" fill=\"#FDFDFD\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"33\" viewBox=\"0 0 34 33\" fill=\"none\"><path d=\"M33.1293 16.1599C33.1293 7.25234 25.9125 0.0266113 17.0049 0.0266113C8.09731 0.0266113 0.871582 7.25234 0.871582 16.1599C0.871582 24.2132 6.77141 30.8872 14.4866 32.0975V20.8228H10.3932V16.1599H14.4866V12.6093C14.4866 8.56934 16.8981 6.33577 20.5821 6.33577C22.3441 6.33577 24.195 6.64723 24.195 6.64723V10.616H22.1572C20.155 10.616 19.5321 11.8619 19.5321 13.1344V16.1599H24.0081L23.2962 20.8228H19.541V32.0975C27.2562 30.8872 33.156 24.2132 33.156 16.1599H33.1293Z\" fill=\"#BCBEC0\"></path><path d=\"M23.2786 20.823L23.9905 16.1601H19.5144V13.1345C19.5144 11.862 20.1373 10.6162 22.1395 10.6162H24.1773V6.64739C24.1773 6.64739 22.3353 6.33594 20.5645 6.33594C16.8804 6.33594 14.4689 8.56951 14.4689 12.6095V16.1601H10.3755V20.823H14.4689V32.0976C15.2876 32.2222 16.1329 32.2934 16.9872 32.2934C17.8415 32.2934 18.6869 32.2222 19.5055 32.0976V20.823H23.2608H23.2786Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"33\" viewBox=\"0 0 34 33\" fill=\"none\"><path d=\"M16.9321 32.2932C25.8423 32.2932 33.0654 25.0701 33.0654 16.1599C33.0654 7.24974 25.8423 0.0266113 16.9321 0.0266113C8.02196 0.0266113 0.798828 7.24974 0.798828 16.1599C0.798828 25.0701 8.02196 32.2932 16.9321 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M16.9318 7.83093C19.6459 7.83093 19.9663 7.83983 21.0341 7.89322C22.0219 7.93771 22.5647 8.10679 22.9206 8.24027C23.3923 8.42714 23.7304 8.64071 24.0864 8.99666C24.4423 9.3526 24.6648 9.69075 24.8427 10.1624C24.9851 10.5183 25.1453 11.0612 25.1898 12.0489C25.2343 13.1167 25.2521 13.4371 25.2521 16.1512C25.2521 18.8653 25.2432 19.1856 25.1898 20.2535C25.1453 21.2412 24.9762 21.7841 24.8427 22.14C24.6559 22.6116 24.4423 22.9498 24.0864 23.3057C23.7304 23.6617 23.3923 23.8841 22.9206 24.0621C22.5647 24.2045 22.0219 24.3647 21.0341 24.4092C19.9663 24.4537 19.6459 24.4715 16.9318 24.4715C14.2177 24.4715 13.8974 24.4626 12.8295 24.4092C11.8418 24.3647 11.299 24.1956 10.943 24.0621C10.4714 23.8752 10.1332 23.6617 9.77729 23.3057C9.42134 22.9498 9.19887 22.6116 9.0209 22.14C8.87852 21.7841 8.71834 21.2412 8.67385 20.2535C8.62935 19.1856 8.61155 18.8653 8.61155 16.1512C8.61155 13.4371 8.62046 13.1167 8.67385 12.0489C8.71834 11.0612 8.88742 10.5183 9.0209 10.1624C9.20777 9.69075 9.42134 9.3526 9.77729 8.99666C10.1332 8.64071 10.4714 8.41824 10.943 8.24027C11.299 8.09789 11.8418 7.93771 12.8295 7.89322C13.8974 7.84873 14.2177 7.83093 16.9318 7.83093ZM16.9318 5.9978C14.1732 5.9978 13.8262 6.0067 12.7406 6.06009C11.6638 6.11349 10.9252 6.28256 10.2756 6.53172C9.60821 6.78979 9.03869 7.13683 8.47808 7.70635C7.91746 8.26697 7.57042 8.83648 7.30346 9.50388C7.05429 10.1535 6.87631 10.8921 6.83181 11.9688C6.77842 13.0545 6.76953 13.4015 6.76953 16.1601C6.76953 18.9187 6.77842 19.2657 6.83181 20.3514C6.88521 21.4281 7.05429 22.1667 7.30346 22.8163C7.56152 23.4837 7.90856 24.0532 8.47808 24.6138C9.03869 25.1745 9.60821 25.5215 10.2756 25.7885C10.9252 26.0376 11.6638 26.2156 12.7406 26.2601C13.8262 26.3135 14.1732 26.3224 16.9318 26.3224C19.6904 26.3224 20.0375 26.3135 21.1231 26.2601C22.1998 26.2067 22.9384 26.0376 23.588 25.7885C24.2554 25.5304 24.8249 25.1834 25.3856 24.6138C25.9462 24.0532 26.2932 23.4837 26.5602 22.8163C26.8094 22.1667 26.9873 21.4281 27.0318 20.3514C27.0852 19.2657 27.0941 18.9187 27.0941 16.1601C27.0941 13.4015 27.0852 13.0545 27.0318 11.9688C26.9784 10.8921 26.8094 10.1535 26.5602 9.50388C26.3021 8.83648 25.9551 8.26697 25.3856 7.70635C24.8249 7.14573 24.2554 6.79868 23.588 6.53172C22.9384 6.28256 22.1998 6.10459 21.1231 6.06009C20.0375 6.0067 19.6904 5.9978 16.9318 5.9978Z\" fill=\"white\"></path><path d=\"M16.9319 10.9453C14.0487 10.9453 11.7173 13.2768 11.7173 16.1599C11.7173 19.0431 14.0487 21.3746 16.9319 21.3746C19.8151 21.3746 22.1465 19.0431 22.1465 16.1599C22.1465 13.2768 19.8151 10.9453 16.9319 10.9453ZM16.9319 19.5503C15.0632 19.5503 13.5504 18.0376 13.5504 16.1688C13.5504 14.3001 15.0632 12.7873 16.9319 12.7873C18.8006 12.7873 20.3134 14.3001 20.3134 16.1688C20.3134 18.0376 18.8006 19.5503 16.9319 19.5503Z\" fill=\"white\"></path><path d=\"M22.3602 11.9597C23.0335 11.9597 23.5794 11.4139 23.5794 10.7406C23.5794 10.0673 23.0335 9.52148 22.3602 9.52148C21.6869 9.52148 21.1411 10.0673 21.1411 10.7406C21.1411 11.4139 21.6869 11.9597 22.3602 11.9597Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.8677 32.2932C25.7779 32.2932 33.001 25.0701 33.001 16.1599C33.001 7.24974 25.7779 0.0266113 16.8677 0.0266113C7.95751 0.0266113 0.734375 7.24974 0.734375 16.1599C0.734375 25.0701 7.95751 32.2932 16.8677 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M27.6173 16.1601C27.6173 14.8609 26.5672 13.8108 25.268 13.8108C24.6362 13.8108 24.0578 14.06 23.6395 14.4693C22.0289 13.3125 19.8131 12.5561 17.3482 12.476L18.416 7.43047L21.9132 8.17795C21.9577 9.06782 22.6874 9.77972 23.5862 9.77972C24.4849 9.77972 25.268 9.02333 25.268 8.09787C25.268 7.1724 24.5116 6.41602 23.5862 6.41602C22.9277 6.41602 22.3581 6.79866 22.0823 7.35038L18.1758 6.5228C18.069 6.4961 17.9533 6.5228 17.8554 6.58509C17.7575 6.64738 17.6952 6.74527 17.6774 6.85205L16.485 12.476C13.9845 12.5472 11.7331 13.2947 10.1047 14.4693C9.68643 14.06 9.10802 13.8108 8.47622 13.8108C7.17701 13.8108 6.12695 14.8609 6.12695 16.1601C6.12695 17.1122 6.69647 17.9398 7.51514 18.3046C7.47955 18.536 7.46175 18.7763 7.46175 19.0165C7.46175 22.6383 11.6708 25.566 16.8677 25.566C22.0645 25.566 26.2736 22.6294 26.2736 19.0165C26.2736 18.7763 26.2558 18.5449 26.2202 18.3135C27.0478 17.9487 27.6173 17.1211 27.6173 16.1601ZM11.484 17.8419C11.484 16.9165 12.2403 16.1601 13.1658 16.1601C14.0913 16.1601 14.8477 16.9165 14.8477 17.8419C14.8477 18.7674 14.0913 19.5238 13.1658 19.5238C12.2403 19.5238 11.484 18.7674 11.484 17.8419ZM20.8543 22.2824C19.7064 23.4303 17.5084 23.5193 16.8677 23.5193C16.227 23.5193 14.0201 23.4303 12.881 22.2824C12.712 22.1133 12.712 21.8374 12.881 21.6683C13.0501 21.4993 13.326 21.4993 13.4951 21.6683C14.2159 22.3891 15.7642 22.6472 16.8677 22.6472C17.9711 22.6472 19.5195 22.3891 20.2403 21.6683C20.4093 21.4993 20.6852 21.4993 20.8543 21.6683C21.0234 21.8374 21.0234 22.1133 20.8543 22.2824ZM20.5606 19.5238C19.6351 19.5238 18.8788 18.7674 18.8788 17.8419C18.8788 16.9165 19.6351 16.1601 20.5606 16.1601C21.4861 16.1601 22.2425 16.9165 22.2425 17.8419C22.2425 18.7674 21.4861 19.5238 20.5606 19.5238Z\" fill=\"white\"></path></svg>					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 09:17:39', '2023-10-02 09:17:39', '', 13, 'https://av-advertising.com/beyondc/?p=186', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(187, 1, '2023-10-02 09:17:39', '2023-10-02 09:17:39', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n															<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<p>it’s time we inspire those who inspired us</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.1422 0C7.22573 0 0 7.22573 0 16.1422C0 22.9853 4.25357 28.8317 10.2602 31.181C10.1178 29.9085 9.99322 27.9419 10.3136 26.5448C10.6072 25.2811 12.2001 18.5182 12.2001 18.5182C12.2001 18.5182 11.7196 17.5482 11.7196 16.1244C11.7196 13.8819 13.0188 12.2001 14.6472 12.2001C16.0265 12.2001 16.6939 13.2323 16.6939 14.4693C16.6939 15.8485 15.813 17.9219 15.3502 19.853C14.9676 21.4636 16.16 22.7806 17.744 22.7806C20.6182 22.7806 22.8162 19.7551 22.8162 15.3947C22.8162 11.5238 20.0398 8.82749 16.0621 8.82749C11.4615 8.82749 8.7652 12.2713 8.7652 15.8308C8.7652 17.21 9.29912 18.705 9.95762 19.5148C10.0911 19.675 10.1 19.8174 10.0644 19.9775C9.94872 20.4848 9.66397 21.5882 9.61057 21.8107C9.54828 22.1043 9.37031 22.1666 9.06775 22.0242C7.04775 21.081 5.78414 18.1444 5.78414 15.7685C5.78414 10.6784 9.47709 5.99771 16.4537 5.99771C22.0509 5.99771 26.4024 9.98432 26.4024 15.3235C26.4024 20.6627 22.8963 25.3701 18.0287 25.3701C16.3914 25.3701 14.8519 24.5159 14.3358 23.5103C14.3358 23.5103 13.526 26.5893 13.3302 27.3545C12.9743 28.7605 11.9865 30.5136 11.328 31.5903C12.8408 32.053 14.4337 32.3111 16.1155 32.3111C25.032 32.3111 32.2577 25.0854 32.2577 16.1689C32.2844 7.22573 25.0587 0 16.1422 0Z\" fill=\"#BCBEC0\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"33\" viewBox=\"0 0 34 33\" fill=\"none\"><path d=\"M17.0693 32.2932C25.9795 32.2932 33.2026 25.0701 33.2026 16.1599C33.2026 7.24974 25.9795 0.0266113 17.0693 0.0266113C8.15916 0.0266113 0.936035 7.24974 0.936035 16.1599C0.936035 25.0701 8.15916 32.2932 17.0693 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M18.315 13.9531C18.5819 13.6595 18.7955 13.3569 19.0714 13.0988C19.9078 12.3069 20.8956 11.9153 22.0524 11.9242C22.6842 11.9242 23.316 11.9776 23.93 12.1556C25.3271 12.556 26.1458 13.526 26.5285 14.8964C26.8221 15.9197 26.8755 16.9787 26.8755 18.0287C26.8755 20.2534 26.8755 22.487 26.8755 24.7116C26.8755 24.9163 26.8132 24.9786 26.6085 24.9697C25.4606 24.9608 24.3127 24.9608 23.1648 24.9697C22.9601 24.9697 22.9156 24.9074 22.9156 24.7205C22.9156 22.6026 22.9156 20.4758 22.9156 18.358C22.9156 17.824 22.88 17.299 22.7287 16.7829C22.4529 15.8307 21.7766 15.3502 20.7799 15.3947C19.4184 15.4659 18.7065 16.1422 18.5374 17.5215C18.493 17.8507 18.4752 18.18 18.4752 18.5181C18.4752 20.5826 18.4752 22.6382 18.4752 24.7027C18.4752 24.9074 18.4218 24.9697 18.2171 24.9697C17.0603 24.9608 15.9034 24.9608 14.7466 24.9697C14.5597 24.9697 14.5063 24.9252 14.5063 24.7294C14.5063 20.6449 14.5063 16.5604 14.5063 12.4848C14.5063 12.2802 14.5686 12.2357 14.7644 12.2357C15.8589 12.2357 16.9624 12.2446 18.0569 12.2357C18.2616 12.2357 18.315 12.298 18.3061 12.4937C18.2972 12.9832 18.3061 13.4726 18.3061 13.962L18.315 13.9531Z\" fill=\"#FDFDFD\"></path><path d=\"M12.0235 18.625C12.0235 20.645 12.0235 22.665 12.0235 24.685C12.0235 24.9074 11.9701 24.9786 11.7387 24.9786C10.5908 24.9697 9.44288 24.9697 8.29495 24.9786C8.10808 24.9786 8.05469 24.9341 8.05469 24.7473C8.05469 20.6539 8.05469 16.5694 8.05469 12.476C8.05469 12.3069 8.09918 12.2446 8.27715 12.2446C9.44288 12.2446 10.6086 12.2535 11.7654 12.2446C11.9879 12.2446 12.0235 12.3336 12.0146 12.5205C12.0146 14.5583 12.0146 16.5961 12.0146 18.6339L12.0235 18.625Z\" fill=\"#FDFDFD\"></path><path d=\"M12.3441 8.18675C12.3441 9.45926 11.3118 10.4915 10.0482 10.4915C8.80238 10.4915 7.76123 9.45926 7.76123 8.21345C7.76123 6.94984 8.79348 5.90869 10.0571 5.90869C11.3118 5.90869 12.3441 6.94094 12.3441 8.18675Z\" fill=\"#FDFDFD\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"33\" viewBox=\"0 0 34 33\" fill=\"none\"><path d=\"M33.1293 16.1599C33.1293 7.25234 25.9125 0.0266113 17.0049 0.0266113C8.09731 0.0266113 0.871582 7.25234 0.871582 16.1599C0.871582 24.2132 6.77141 30.8872 14.4866 32.0975V20.8228H10.3932V16.1599H14.4866V12.6093C14.4866 8.56934 16.8981 6.33577 20.5821 6.33577C22.3441 6.33577 24.195 6.64723 24.195 6.64723V10.616H22.1572C20.155 10.616 19.5321 11.8619 19.5321 13.1344V16.1599H24.0081L23.2962 20.8228H19.541V32.0975C27.2562 30.8872 33.156 24.2132 33.156 16.1599H33.1293Z\" fill=\"#BCBEC0\"></path><path d=\"M23.2786 20.823L23.9905 16.1601H19.5144V13.1345C19.5144 11.862 20.1373 10.6162 22.1395 10.6162H24.1773V6.64739C24.1773 6.64739 22.3353 6.33594 20.5645 6.33594C16.8804 6.33594 14.4689 8.56951 14.4689 12.6095V16.1601H10.3755V20.823H14.4689V32.0976C15.2876 32.2222 16.1329 32.2934 16.9872 32.2934C17.8415 32.2934 18.6869 32.2222 19.5055 32.0976V20.823H23.2608H23.2786Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"33\" viewBox=\"0 0 34 33\" fill=\"none\"><path d=\"M16.9321 32.2932C25.8423 32.2932 33.0654 25.0701 33.0654 16.1599C33.0654 7.24974 25.8423 0.0266113 16.9321 0.0266113C8.02196 0.0266113 0.798828 7.24974 0.798828 16.1599C0.798828 25.0701 8.02196 32.2932 16.9321 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M16.9318 7.83093C19.6459 7.83093 19.9663 7.83983 21.0341 7.89322C22.0219 7.93771 22.5647 8.10679 22.9206 8.24027C23.3923 8.42714 23.7304 8.64071 24.0864 8.99666C24.4423 9.3526 24.6648 9.69075 24.8427 10.1624C24.9851 10.5183 25.1453 11.0612 25.1898 12.0489C25.2343 13.1167 25.2521 13.4371 25.2521 16.1512C25.2521 18.8653 25.2432 19.1856 25.1898 20.2535C25.1453 21.2412 24.9762 21.7841 24.8427 22.14C24.6559 22.6116 24.4423 22.9498 24.0864 23.3057C23.7304 23.6617 23.3923 23.8841 22.9206 24.0621C22.5647 24.2045 22.0219 24.3647 21.0341 24.4092C19.9663 24.4537 19.6459 24.4715 16.9318 24.4715C14.2177 24.4715 13.8974 24.4626 12.8295 24.4092C11.8418 24.3647 11.299 24.1956 10.943 24.0621C10.4714 23.8752 10.1332 23.6617 9.77729 23.3057C9.42134 22.9498 9.19887 22.6116 9.0209 22.14C8.87852 21.7841 8.71834 21.2412 8.67385 20.2535C8.62935 19.1856 8.61155 18.8653 8.61155 16.1512C8.61155 13.4371 8.62046 13.1167 8.67385 12.0489C8.71834 11.0612 8.88742 10.5183 9.0209 10.1624C9.20777 9.69075 9.42134 9.3526 9.77729 8.99666C10.1332 8.64071 10.4714 8.41824 10.943 8.24027C11.299 8.09789 11.8418 7.93771 12.8295 7.89322C13.8974 7.84873 14.2177 7.83093 16.9318 7.83093ZM16.9318 5.9978C14.1732 5.9978 13.8262 6.0067 12.7406 6.06009C11.6638 6.11349 10.9252 6.28256 10.2756 6.53172C9.60821 6.78979 9.03869 7.13683 8.47808 7.70635C7.91746 8.26697 7.57042 8.83648 7.30346 9.50388C7.05429 10.1535 6.87631 10.8921 6.83181 11.9688C6.77842 13.0545 6.76953 13.4015 6.76953 16.1601C6.76953 18.9187 6.77842 19.2657 6.83181 20.3514C6.88521 21.4281 7.05429 22.1667 7.30346 22.8163C7.56152 23.4837 7.90856 24.0532 8.47808 24.6138C9.03869 25.1745 9.60821 25.5215 10.2756 25.7885C10.9252 26.0376 11.6638 26.2156 12.7406 26.2601C13.8262 26.3135 14.1732 26.3224 16.9318 26.3224C19.6904 26.3224 20.0375 26.3135 21.1231 26.2601C22.1998 26.2067 22.9384 26.0376 23.588 25.7885C24.2554 25.5304 24.8249 25.1834 25.3856 24.6138C25.9462 24.0532 26.2932 23.4837 26.5602 22.8163C26.8094 22.1667 26.9873 21.4281 27.0318 20.3514C27.0852 19.2657 27.0941 18.9187 27.0941 16.1601C27.0941 13.4015 27.0852 13.0545 27.0318 11.9688C26.9784 10.8921 26.8094 10.1535 26.5602 9.50388C26.3021 8.83648 25.9551 8.26697 25.3856 7.70635C24.8249 7.14573 24.2554 6.79868 23.588 6.53172C22.9384 6.28256 22.1998 6.10459 21.1231 6.06009C20.0375 6.0067 19.6904 5.9978 16.9318 5.9978Z\" fill=\"white\"></path><path d=\"M16.9319 10.9453C14.0487 10.9453 11.7173 13.2768 11.7173 16.1599C11.7173 19.0431 14.0487 21.3746 16.9319 21.3746C19.8151 21.3746 22.1465 19.0431 22.1465 16.1599C22.1465 13.2768 19.8151 10.9453 16.9319 10.9453ZM16.9319 19.5503C15.0632 19.5503 13.5504 18.0376 13.5504 16.1688C13.5504 14.3001 15.0632 12.7873 16.9319 12.7873C18.8006 12.7873 20.3134 14.3001 20.3134 16.1688C20.3134 18.0376 18.8006 19.5503 16.9319 19.5503Z\" fill=\"white\"></path><path d=\"M22.3602 11.9597C23.0335 11.9597 23.5794 11.4139 23.5794 10.7406C23.5794 10.0673 23.0335 9.52148 22.3602 9.52148C21.6869 9.52148 21.1411 10.0673 21.1411 10.7406C21.1411 11.4139 21.6869 11.9597 22.3602 11.9597Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.8677 32.2932C25.7779 32.2932 33.001 25.0701 33.001 16.1599C33.001 7.24974 25.7779 0.0266113 16.8677 0.0266113C7.95751 0.0266113 0.734375 7.24974 0.734375 16.1599C0.734375 25.0701 7.95751 32.2932 16.8677 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M27.6173 16.1601C27.6173 14.8609 26.5672 13.8108 25.268 13.8108C24.6362 13.8108 24.0578 14.06 23.6395 14.4693C22.0289 13.3125 19.8131 12.5561 17.3482 12.476L18.416 7.43047L21.9132 8.17795C21.9577 9.06782 22.6874 9.77972 23.5862 9.77972C24.4849 9.77972 25.268 9.02333 25.268 8.09787C25.268 7.1724 24.5116 6.41602 23.5862 6.41602C22.9277 6.41602 22.3581 6.79866 22.0823 7.35038L18.1758 6.5228C18.069 6.4961 17.9533 6.5228 17.8554 6.58509C17.7575 6.64738 17.6952 6.74527 17.6774 6.85205L16.485 12.476C13.9845 12.5472 11.7331 13.2947 10.1047 14.4693C9.68643 14.06 9.10802 13.8108 8.47622 13.8108C7.17701 13.8108 6.12695 14.8609 6.12695 16.1601C6.12695 17.1122 6.69647 17.9398 7.51514 18.3046C7.47955 18.536 7.46175 18.7763 7.46175 19.0165C7.46175 22.6383 11.6708 25.566 16.8677 25.566C22.0645 25.566 26.2736 22.6294 26.2736 19.0165C26.2736 18.7763 26.2558 18.5449 26.2202 18.3135C27.0478 17.9487 27.6173 17.1211 27.6173 16.1601ZM11.484 17.8419C11.484 16.9165 12.2403 16.1601 13.1658 16.1601C14.0913 16.1601 14.8477 16.9165 14.8477 17.8419C14.8477 18.7674 14.0913 19.5238 13.1658 19.5238C12.2403 19.5238 11.484 18.7674 11.484 17.8419ZM20.8543 22.2824C19.7064 23.4303 17.5084 23.5193 16.8677 23.5193C16.227 23.5193 14.0201 23.4303 12.881 22.2824C12.712 22.1133 12.712 21.8374 12.881 21.6683C13.0501 21.4993 13.326 21.4993 13.4951 21.6683C14.2159 22.3891 15.7642 22.6472 16.8677 22.6472C17.9711 22.6472 19.5195 22.3891 20.2403 21.6683C20.4093 21.4993 20.6852 21.4993 20.8543 21.6683C21.0234 21.8374 21.0234 22.1133 20.8543 22.2824ZM20.5606 19.5238C19.6351 19.5238 18.8788 18.7674 18.8788 17.8419C18.8788 16.9165 19.6351 16.1601 20.5606 16.1601C21.4861 16.1601 22.2425 16.9165 22.2425 17.8419C22.2425 18.7674 21.4861 19.5238 20.5606 19.5238Z\" fill=\"white\"></path></svg>					</a>\n			<h2>Address</h2>		\n			<p>Flat 601, C block, Siri Signature\napts, Kakatiya Hills Hyderabad 500081</p>		\n			<h2>Phone</h2>		\n			<p>+91 9133323459<br>\n+91 89778 12345 / +91 9030707212</p>		\n			<h2>Email</h2>		\n			<p>info@beyondcolor.com</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 09:17:39', '2023-10-02 09:17:39', '', 13, 'https://av-advertising.com/beyondc/?p=187', 0, 'revision', '', 0),
(188, 1, '2023-10-02 09:18:26', '2023-10-02 09:18:26', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>it’s time we inspire those who inspired us</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.1422 0C7.22573 0 0 7.22573 0 16.1422C0 22.9853 4.25357 28.8317 10.2602 31.181C10.1178 29.9085 9.99322 27.9419 10.3136 26.5448C10.6072 25.2811 12.2001 18.5182 12.2001 18.5182C12.2001 18.5182 11.7196 17.5482 11.7196 16.1244C11.7196 13.8819 13.0188 12.2001 14.6472 12.2001C16.0265 12.2001 16.6939 13.2323 16.6939 14.4693C16.6939 15.8485 15.813 17.9219 15.3502 19.853C14.9676 21.4636 16.16 22.7806 17.744 22.7806C20.6182 22.7806 22.8162 19.7551 22.8162 15.3947C22.8162 11.5238 20.0398 8.82749 16.0621 8.82749C11.4615 8.82749 8.7652 12.2713 8.7652 15.8308C8.7652 17.21 9.29912 18.705 9.95762 19.5148C10.0911 19.675 10.1 19.8174 10.0644 19.9775C9.94872 20.4848 9.66397 21.5882 9.61057 21.8107C9.54828 22.1043 9.37031 22.1666 9.06775 22.0242C7.04775 21.081 5.78414 18.1444 5.78414 15.7685C5.78414 10.6784 9.47709 5.99771 16.4537 5.99771C22.0509 5.99771 26.4024 9.98432 26.4024 15.3235C26.4024 20.6627 22.8963 25.3701 18.0287 25.3701C16.3914 25.3701 14.8519 24.5159 14.3358 23.5103C14.3358 23.5103 13.526 26.5893 13.3302 27.3545C12.9743 28.7605 11.9865 30.5136 11.328 31.5903C12.8408 32.053 14.4337 32.3111 16.1155 32.3111C25.032 32.3111 32.2577 25.0854 32.2577 16.1689C32.2844 7.22573 25.0587 0 16.1422 0Z\" fill=\"#BCBEC0\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"33\" viewBox=\"0 0 34 33\" fill=\"none\"><path d=\"M17.0693 32.2932C25.9795 32.2932 33.2026 25.0701 33.2026 16.1599C33.2026 7.24974 25.9795 0.0266113 17.0693 0.0266113C8.15916 0.0266113 0.936035 7.24974 0.936035 16.1599C0.936035 25.0701 8.15916 32.2932 17.0693 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M18.315 13.9531C18.5819 13.6595 18.7955 13.3569 19.0714 13.0988C19.9078 12.3069 20.8956 11.9153 22.0524 11.9242C22.6842 11.9242 23.316 11.9776 23.93 12.1556C25.3271 12.556 26.1458 13.526 26.5285 14.8964C26.8221 15.9197 26.8755 16.9787 26.8755 18.0287C26.8755 20.2534 26.8755 22.487 26.8755 24.7116C26.8755 24.9163 26.8132 24.9786 26.6085 24.9697C25.4606 24.9608 24.3127 24.9608 23.1648 24.9697C22.9601 24.9697 22.9156 24.9074 22.9156 24.7205C22.9156 22.6026 22.9156 20.4758 22.9156 18.358C22.9156 17.824 22.88 17.299 22.7287 16.7829C22.4529 15.8307 21.7766 15.3502 20.7799 15.3947C19.4184 15.4659 18.7065 16.1422 18.5374 17.5215C18.493 17.8507 18.4752 18.18 18.4752 18.5181C18.4752 20.5826 18.4752 22.6382 18.4752 24.7027C18.4752 24.9074 18.4218 24.9697 18.2171 24.9697C17.0603 24.9608 15.9034 24.9608 14.7466 24.9697C14.5597 24.9697 14.5063 24.9252 14.5063 24.7294C14.5063 20.6449 14.5063 16.5604 14.5063 12.4848C14.5063 12.2802 14.5686 12.2357 14.7644 12.2357C15.8589 12.2357 16.9624 12.2446 18.0569 12.2357C18.2616 12.2357 18.315 12.298 18.3061 12.4937C18.2972 12.9832 18.3061 13.4726 18.3061 13.962L18.315 13.9531Z\" fill=\"#FDFDFD\"></path><path d=\"M12.0235 18.625C12.0235 20.645 12.0235 22.665 12.0235 24.685C12.0235 24.9074 11.9701 24.9786 11.7387 24.9786C10.5908 24.9697 9.44288 24.9697 8.29495 24.9786C8.10808 24.9786 8.05469 24.9341 8.05469 24.7473C8.05469 20.6539 8.05469 16.5694 8.05469 12.476C8.05469 12.3069 8.09918 12.2446 8.27715 12.2446C9.44288 12.2446 10.6086 12.2535 11.7654 12.2446C11.9879 12.2446 12.0235 12.3336 12.0146 12.5205C12.0146 14.5583 12.0146 16.5961 12.0146 18.6339L12.0235 18.625Z\" fill=\"#FDFDFD\"></path><path d=\"M12.3441 8.18675C12.3441 9.45926 11.3118 10.4915 10.0482 10.4915C8.80238 10.4915 7.76123 9.45926 7.76123 8.21345C7.76123 6.94984 8.79348 5.90869 10.0571 5.90869C11.3118 5.90869 12.3441 6.94094 12.3441 8.18675Z\" fill=\"#FDFDFD\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"33\" viewBox=\"0 0 34 33\" fill=\"none\"><path d=\"M33.1293 16.1599C33.1293 7.25234 25.9125 0.0266113 17.0049 0.0266113C8.09731 0.0266113 0.871582 7.25234 0.871582 16.1599C0.871582 24.2132 6.77141 30.8872 14.4866 32.0975V20.8228H10.3932V16.1599H14.4866V12.6093C14.4866 8.56934 16.8981 6.33577 20.5821 6.33577C22.3441 6.33577 24.195 6.64723 24.195 6.64723V10.616H22.1572C20.155 10.616 19.5321 11.8619 19.5321 13.1344V16.1599H24.0081L23.2962 20.8228H19.541V32.0975C27.2562 30.8872 33.156 24.2132 33.156 16.1599H33.1293Z\" fill=\"#BCBEC0\"></path><path d=\"M23.2786 20.823L23.9905 16.1601H19.5144V13.1345C19.5144 11.862 20.1373 10.6162 22.1395 10.6162H24.1773V6.64739C24.1773 6.64739 22.3353 6.33594 20.5645 6.33594C16.8804 6.33594 14.4689 8.56951 14.4689 12.6095V16.1601H10.3755V20.823H14.4689V32.0976C15.2876 32.2222 16.1329 32.2934 16.9872 32.2934C17.8415 32.2934 18.6869 32.2222 19.5055 32.0976V20.823H23.2608H23.2786Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"33\" viewBox=\"0 0 34 33\" fill=\"none\"><path d=\"M16.9321 32.2932C25.8423 32.2932 33.0654 25.0701 33.0654 16.1599C33.0654 7.24974 25.8423 0.0266113 16.9321 0.0266113C8.02196 0.0266113 0.798828 7.24974 0.798828 16.1599C0.798828 25.0701 8.02196 32.2932 16.9321 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M16.9318 7.83093C19.6459 7.83093 19.9663 7.83983 21.0341 7.89322C22.0219 7.93771 22.5647 8.10679 22.9206 8.24027C23.3923 8.42714 23.7304 8.64071 24.0864 8.99666C24.4423 9.3526 24.6648 9.69075 24.8427 10.1624C24.9851 10.5183 25.1453 11.0612 25.1898 12.0489C25.2343 13.1167 25.2521 13.4371 25.2521 16.1512C25.2521 18.8653 25.2432 19.1856 25.1898 20.2535C25.1453 21.2412 24.9762 21.7841 24.8427 22.14C24.6559 22.6116 24.4423 22.9498 24.0864 23.3057C23.7304 23.6617 23.3923 23.8841 22.9206 24.0621C22.5647 24.2045 22.0219 24.3647 21.0341 24.4092C19.9663 24.4537 19.6459 24.4715 16.9318 24.4715C14.2177 24.4715 13.8974 24.4626 12.8295 24.4092C11.8418 24.3647 11.299 24.1956 10.943 24.0621C10.4714 23.8752 10.1332 23.6617 9.77729 23.3057C9.42134 22.9498 9.19887 22.6116 9.0209 22.14C8.87852 21.7841 8.71834 21.2412 8.67385 20.2535C8.62935 19.1856 8.61155 18.8653 8.61155 16.1512C8.61155 13.4371 8.62046 13.1167 8.67385 12.0489C8.71834 11.0612 8.88742 10.5183 9.0209 10.1624C9.20777 9.69075 9.42134 9.3526 9.77729 8.99666C10.1332 8.64071 10.4714 8.41824 10.943 8.24027C11.299 8.09789 11.8418 7.93771 12.8295 7.89322C13.8974 7.84873 14.2177 7.83093 16.9318 7.83093ZM16.9318 5.9978C14.1732 5.9978 13.8262 6.0067 12.7406 6.06009C11.6638 6.11349 10.9252 6.28256 10.2756 6.53172C9.60821 6.78979 9.03869 7.13683 8.47808 7.70635C7.91746 8.26697 7.57042 8.83648 7.30346 9.50388C7.05429 10.1535 6.87631 10.8921 6.83181 11.9688C6.77842 13.0545 6.76953 13.4015 6.76953 16.1601C6.76953 18.9187 6.77842 19.2657 6.83181 20.3514C6.88521 21.4281 7.05429 22.1667 7.30346 22.8163C7.56152 23.4837 7.90856 24.0532 8.47808 24.6138C9.03869 25.1745 9.60821 25.5215 10.2756 25.7885C10.9252 26.0376 11.6638 26.2156 12.7406 26.2601C13.8262 26.3135 14.1732 26.3224 16.9318 26.3224C19.6904 26.3224 20.0375 26.3135 21.1231 26.2601C22.1998 26.2067 22.9384 26.0376 23.588 25.7885C24.2554 25.5304 24.8249 25.1834 25.3856 24.6138C25.9462 24.0532 26.2932 23.4837 26.5602 22.8163C26.8094 22.1667 26.9873 21.4281 27.0318 20.3514C27.0852 19.2657 27.0941 18.9187 27.0941 16.1601C27.0941 13.4015 27.0852 13.0545 27.0318 11.9688C26.9784 10.8921 26.8094 10.1535 26.5602 9.50388C26.3021 8.83648 25.9551 8.26697 25.3856 7.70635C24.8249 7.14573 24.2554 6.79868 23.588 6.53172C22.9384 6.28256 22.1998 6.10459 21.1231 6.06009C20.0375 6.0067 19.6904 5.9978 16.9318 5.9978Z\" fill=\"white\"></path><path d=\"M16.9319 10.9453C14.0487 10.9453 11.7173 13.2768 11.7173 16.1599C11.7173 19.0431 14.0487 21.3746 16.9319 21.3746C19.8151 21.3746 22.1465 19.0431 22.1465 16.1599C22.1465 13.2768 19.8151 10.9453 16.9319 10.9453ZM16.9319 19.5503C15.0632 19.5503 13.5504 18.0376 13.5504 16.1688C13.5504 14.3001 15.0632 12.7873 16.9319 12.7873C18.8006 12.7873 20.3134 14.3001 20.3134 16.1688C20.3134 18.0376 18.8006 19.5503 16.9319 19.5503Z\" fill=\"white\"></path><path d=\"M22.3602 11.9597C23.0335 11.9597 23.5794 11.4139 23.5794 10.7406C23.5794 10.0673 23.0335 9.52148 22.3602 9.52148C21.6869 9.52148 21.1411 10.0673 21.1411 10.7406C21.1411 11.4139 21.6869 11.9597 22.3602 11.9597Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.8677 32.2932C25.7779 32.2932 33.001 25.0701 33.001 16.1599C33.001 7.24974 25.7779 0.0266113 16.8677 0.0266113C7.95751 0.0266113 0.734375 7.24974 0.734375 16.1599C0.734375 25.0701 7.95751 32.2932 16.8677 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M27.6173 16.1601C27.6173 14.8609 26.5672 13.8108 25.268 13.8108C24.6362 13.8108 24.0578 14.06 23.6395 14.4693C22.0289 13.3125 19.8131 12.5561 17.3482 12.476L18.416 7.43047L21.9132 8.17795C21.9577 9.06782 22.6874 9.77972 23.5862 9.77972C24.4849 9.77972 25.268 9.02333 25.268 8.09787C25.268 7.1724 24.5116 6.41602 23.5862 6.41602C22.9277 6.41602 22.3581 6.79866 22.0823 7.35038L18.1758 6.5228C18.069 6.4961 17.9533 6.5228 17.8554 6.58509C17.7575 6.64738 17.6952 6.74527 17.6774 6.85205L16.485 12.476C13.9845 12.5472 11.7331 13.2947 10.1047 14.4693C9.68643 14.06 9.10802 13.8108 8.47622 13.8108C7.17701 13.8108 6.12695 14.8609 6.12695 16.1601C6.12695 17.1122 6.69647 17.9398 7.51514 18.3046C7.47955 18.536 7.46175 18.7763 7.46175 19.0165C7.46175 22.6383 11.6708 25.566 16.8677 25.566C22.0645 25.566 26.2736 22.6294 26.2736 19.0165C26.2736 18.7763 26.2558 18.5449 26.2202 18.3135C27.0478 17.9487 27.6173 17.1211 27.6173 16.1601ZM11.484 17.8419C11.484 16.9165 12.2403 16.1601 13.1658 16.1601C14.0913 16.1601 14.8477 16.9165 14.8477 17.8419C14.8477 18.7674 14.0913 19.5238 13.1658 19.5238C12.2403 19.5238 11.484 18.7674 11.484 17.8419ZM20.8543 22.2824C19.7064 23.4303 17.5084 23.5193 16.8677 23.5193C16.227 23.5193 14.0201 23.4303 12.881 22.2824C12.712 22.1133 12.712 21.8374 12.881 21.6683C13.0501 21.4993 13.326 21.4993 13.4951 21.6683C14.2159 22.3891 15.7642 22.6472 16.8677 22.6472C17.9711 22.6472 19.5195 22.3891 20.2403 21.6683C20.4093 21.4993 20.6852 21.4993 20.8543 21.6683C21.0234 21.8374 21.0234 22.1133 20.8543 22.2824ZM20.5606 19.5238C19.6351 19.5238 18.8788 18.7674 18.8788 17.8419C18.8788 16.9165 19.6351 16.1601 20.5606 16.1601C21.4861 16.1601 22.2425 16.9165 22.2425 17.8419C22.2425 18.7674 21.4861 19.5238 20.5606 19.5238Z\" fill=\"white\"></path></svg>					</a>\n			<h2>Address</h2>		\n			<p>Flat 601, C block, Siri Signature\napts, Kakatiya Hills Hyderabad 500081</p>		\n			<h2>Phone</h2>		\n			<p>+91 9133323459<br>\n+91 89778 12345 / +91 9030707212</p>		\n			<h2>Email</h2>		\n			<p>info@beyondcolor.com</p>		\n		<p>2023 beyond Color. All rights reserved | Privacy Policy | Terms in use | Branding Website Design by theav</p>', 'Footer', '', 'publish', 'closed', 'closed', '', 'footer', '', '', '2023-10-02 09:26:22', '2023-10-02 09:26:22', '', 0, 'https://av-advertising.com/beyondc/?post_type=elementor_library&#038;p=188', 0, 'elementor_library', '', 0),
(189, 1, '2023-10-02 09:19:31', '2023-10-02 09:19:31', '', 'Footer', '', 'inherit', 'closed', 'closed', '', '188-revision-v1', '', '', '2023-10-02 09:19:31', '2023-10-02 09:19:31', '', 188, 'https://av-advertising.com/beyondc/?p=189', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(190, 1, '2023-10-02 09:19:32', '2023-10-02 09:19:32', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>it’s time we inspire those who inspired us</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.1422 0C7.22573 0 0 7.22573 0 16.1422C0 22.9853 4.25357 28.8317 10.2602 31.181C10.1178 29.9085 9.99322 27.9419 10.3136 26.5448C10.6072 25.2811 12.2001 18.5182 12.2001 18.5182C12.2001 18.5182 11.7196 17.5482 11.7196 16.1244C11.7196 13.8819 13.0188 12.2001 14.6472 12.2001C16.0265 12.2001 16.6939 13.2323 16.6939 14.4693C16.6939 15.8485 15.813 17.9219 15.3502 19.853C14.9676 21.4636 16.16 22.7806 17.744 22.7806C20.6182 22.7806 22.8162 19.7551 22.8162 15.3947C22.8162 11.5238 20.0398 8.82749 16.0621 8.82749C11.4615 8.82749 8.7652 12.2713 8.7652 15.8308C8.7652 17.21 9.29912 18.705 9.95762 19.5148C10.0911 19.675 10.1 19.8174 10.0644 19.9775C9.94872 20.4848 9.66397 21.5882 9.61057 21.8107C9.54828 22.1043 9.37031 22.1666 9.06775 22.0242C7.04775 21.081 5.78414 18.1444 5.78414 15.7685C5.78414 10.6784 9.47709 5.99771 16.4537 5.99771C22.0509 5.99771 26.4024 9.98432 26.4024 15.3235C26.4024 20.6627 22.8963 25.3701 18.0287 25.3701C16.3914 25.3701 14.8519 24.5159 14.3358 23.5103C14.3358 23.5103 13.526 26.5893 13.3302 27.3545C12.9743 28.7605 11.9865 30.5136 11.328 31.5903C12.8408 32.053 14.4337 32.3111 16.1155 32.3111C25.032 32.3111 32.2577 25.0854 32.2577 16.1689C32.2844 7.22573 25.0587 0 16.1422 0Z\" fill=\"#BCBEC0\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"33\" viewBox=\"0 0 34 33\" fill=\"none\"><path d=\"M17.0693 32.2932C25.9795 32.2932 33.2026 25.0701 33.2026 16.1599C33.2026 7.24974 25.9795 0.0266113 17.0693 0.0266113C8.15916 0.0266113 0.936035 7.24974 0.936035 16.1599C0.936035 25.0701 8.15916 32.2932 17.0693 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M18.315 13.9531C18.5819 13.6595 18.7955 13.3569 19.0714 13.0988C19.9078 12.3069 20.8956 11.9153 22.0524 11.9242C22.6842 11.9242 23.316 11.9776 23.93 12.1556C25.3271 12.556 26.1458 13.526 26.5285 14.8964C26.8221 15.9197 26.8755 16.9787 26.8755 18.0287C26.8755 20.2534 26.8755 22.487 26.8755 24.7116C26.8755 24.9163 26.8132 24.9786 26.6085 24.9697C25.4606 24.9608 24.3127 24.9608 23.1648 24.9697C22.9601 24.9697 22.9156 24.9074 22.9156 24.7205C22.9156 22.6026 22.9156 20.4758 22.9156 18.358C22.9156 17.824 22.88 17.299 22.7287 16.7829C22.4529 15.8307 21.7766 15.3502 20.7799 15.3947C19.4184 15.4659 18.7065 16.1422 18.5374 17.5215C18.493 17.8507 18.4752 18.18 18.4752 18.5181C18.4752 20.5826 18.4752 22.6382 18.4752 24.7027C18.4752 24.9074 18.4218 24.9697 18.2171 24.9697C17.0603 24.9608 15.9034 24.9608 14.7466 24.9697C14.5597 24.9697 14.5063 24.9252 14.5063 24.7294C14.5063 20.6449 14.5063 16.5604 14.5063 12.4848C14.5063 12.2802 14.5686 12.2357 14.7644 12.2357C15.8589 12.2357 16.9624 12.2446 18.0569 12.2357C18.2616 12.2357 18.315 12.298 18.3061 12.4937C18.2972 12.9832 18.3061 13.4726 18.3061 13.962L18.315 13.9531Z\" fill=\"#FDFDFD\"></path><path d=\"M12.0235 18.625C12.0235 20.645 12.0235 22.665 12.0235 24.685C12.0235 24.9074 11.9701 24.9786 11.7387 24.9786C10.5908 24.9697 9.44288 24.9697 8.29495 24.9786C8.10808 24.9786 8.05469 24.9341 8.05469 24.7473C8.05469 20.6539 8.05469 16.5694 8.05469 12.476C8.05469 12.3069 8.09918 12.2446 8.27715 12.2446C9.44288 12.2446 10.6086 12.2535 11.7654 12.2446C11.9879 12.2446 12.0235 12.3336 12.0146 12.5205C12.0146 14.5583 12.0146 16.5961 12.0146 18.6339L12.0235 18.625Z\" fill=\"#FDFDFD\"></path><path d=\"M12.3441 8.18675C12.3441 9.45926 11.3118 10.4915 10.0482 10.4915C8.80238 10.4915 7.76123 9.45926 7.76123 8.21345C7.76123 6.94984 8.79348 5.90869 10.0571 5.90869C11.3118 5.90869 12.3441 6.94094 12.3441 8.18675Z\" fill=\"#FDFDFD\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"33\" viewBox=\"0 0 34 33\" fill=\"none\"><path d=\"M33.1293 16.1599C33.1293 7.25234 25.9125 0.0266113 17.0049 0.0266113C8.09731 0.0266113 0.871582 7.25234 0.871582 16.1599C0.871582 24.2132 6.77141 30.8872 14.4866 32.0975V20.8228H10.3932V16.1599H14.4866V12.6093C14.4866 8.56934 16.8981 6.33577 20.5821 6.33577C22.3441 6.33577 24.195 6.64723 24.195 6.64723V10.616H22.1572C20.155 10.616 19.5321 11.8619 19.5321 13.1344V16.1599H24.0081L23.2962 20.8228H19.541V32.0975C27.2562 30.8872 33.156 24.2132 33.156 16.1599H33.1293Z\" fill=\"#BCBEC0\"></path><path d=\"M23.2786 20.823L23.9905 16.1601H19.5144V13.1345C19.5144 11.862 20.1373 10.6162 22.1395 10.6162H24.1773V6.64739C24.1773 6.64739 22.3353 6.33594 20.5645 6.33594C16.8804 6.33594 14.4689 8.56951 14.4689 12.6095V16.1601H10.3755V20.823H14.4689V32.0976C15.2876 32.2222 16.1329 32.2934 16.9872 32.2934C17.8415 32.2934 18.6869 32.2222 19.5055 32.0976V20.823H23.2608H23.2786Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"33\" viewBox=\"0 0 34 33\" fill=\"none\"><path d=\"M16.9321 32.2932C25.8423 32.2932 33.0654 25.0701 33.0654 16.1599C33.0654 7.24974 25.8423 0.0266113 16.9321 0.0266113C8.02196 0.0266113 0.798828 7.24974 0.798828 16.1599C0.798828 25.0701 8.02196 32.2932 16.9321 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M16.9318 7.83093C19.6459 7.83093 19.9663 7.83983 21.0341 7.89322C22.0219 7.93771 22.5647 8.10679 22.9206 8.24027C23.3923 8.42714 23.7304 8.64071 24.0864 8.99666C24.4423 9.3526 24.6648 9.69075 24.8427 10.1624C24.9851 10.5183 25.1453 11.0612 25.1898 12.0489C25.2343 13.1167 25.2521 13.4371 25.2521 16.1512C25.2521 18.8653 25.2432 19.1856 25.1898 20.2535C25.1453 21.2412 24.9762 21.7841 24.8427 22.14C24.6559 22.6116 24.4423 22.9498 24.0864 23.3057C23.7304 23.6617 23.3923 23.8841 22.9206 24.0621C22.5647 24.2045 22.0219 24.3647 21.0341 24.4092C19.9663 24.4537 19.6459 24.4715 16.9318 24.4715C14.2177 24.4715 13.8974 24.4626 12.8295 24.4092C11.8418 24.3647 11.299 24.1956 10.943 24.0621C10.4714 23.8752 10.1332 23.6617 9.77729 23.3057C9.42134 22.9498 9.19887 22.6116 9.0209 22.14C8.87852 21.7841 8.71834 21.2412 8.67385 20.2535C8.62935 19.1856 8.61155 18.8653 8.61155 16.1512C8.61155 13.4371 8.62046 13.1167 8.67385 12.0489C8.71834 11.0612 8.88742 10.5183 9.0209 10.1624C9.20777 9.69075 9.42134 9.3526 9.77729 8.99666C10.1332 8.64071 10.4714 8.41824 10.943 8.24027C11.299 8.09789 11.8418 7.93771 12.8295 7.89322C13.8974 7.84873 14.2177 7.83093 16.9318 7.83093ZM16.9318 5.9978C14.1732 5.9978 13.8262 6.0067 12.7406 6.06009C11.6638 6.11349 10.9252 6.28256 10.2756 6.53172C9.60821 6.78979 9.03869 7.13683 8.47808 7.70635C7.91746 8.26697 7.57042 8.83648 7.30346 9.50388C7.05429 10.1535 6.87631 10.8921 6.83181 11.9688C6.77842 13.0545 6.76953 13.4015 6.76953 16.1601C6.76953 18.9187 6.77842 19.2657 6.83181 20.3514C6.88521 21.4281 7.05429 22.1667 7.30346 22.8163C7.56152 23.4837 7.90856 24.0532 8.47808 24.6138C9.03869 25.1745 9.60821 25.5215 10.2756 25.7885C10.9252 26.0376 11.6638 26.2156 12.7406 26.2601C13.8262 26.3135 14.1732 26.3224 16.9318 26.3224C19.6904 26.3224 20.0375 26.3135 21.1231 26.2601C22.1998 26.2067 22.9384 26.0376 23.588 25.7885C24.2554 25.5304 24.8249 25.1834 25.3856 24.6138C25.9462 24.0532 26.2932 23.4837 26.5602 22.8163C26.8094 22.1667 26.9873 21.4281 27.0318 20.3514C27.0852 19.2657 27.0941 18.9187 27.0941 16.1601C27.0941 13.4015 27.0852 13.0545 27.0318 11.9688C26.9784 10.8921 26.8094 10.1535 26.5602 9.50388C26.3021 8.83648 25.9551 8.26697 25.3856 7.70635C24.8249 7.14573 24.2554 6.79868 23.588 6.53172C22.9384 6.28256 22.1998 6.10459 21.1231 6.06009C20.0375 6.0067 19.6904 5.9978 16.9318 5.9978Z\" fill=\"white\"></path><path d=\"M16.9319 10.9453C14.0487 10.9453 11.7173 13.2768 11.7173 16.1599C11.7173 19.0431 14.0487 21.3746 16.9319 21.3746C19.8151 21.3746 22.1465 19.0431 22.1465 16.1599C22.1465 13.2768 19.8151 10.9453 16.9319 10.9453ZM16.9319 19.5503C15.0632 19.5503 13.5504 18.0376 13.5504 16.1688C13.5504 14.3001 15.0632 12.7873 16.9319 12.7873C18.8006 12.7873 20.3134 14.3001 20.3134 16.1688C20.3134 18.0376 18.8006 19.5503 16.9319 19.5503Z\" fill=\"white\"></path><path d=\"M22.3602 11.9597C23.0335 11.9597 23.5794 11.4139 23.5794 10.7406C23.5794 10.0673 23.0335 9.52148 22.3602 9.52148C21.6869 9.52148 21.1411 10.0673 21.1411 10.7406C21.1411 11.4139 21.6869 11.9597 22.3602 11.9597Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.8677 32.2932C25.7779 32.2932 33.001 25.0701 33.001 16.1599C33.001 7.24974 25.7779 0.0266113 16.8677 0.0266113C7.95751 0.0266113 0.734375 7.24974 0.734375 16.1599C0.734375 25.0701 7.95751 32.2932 16.8677 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M27.6173 16.1601C27.6173 14.8609 26.5672 13.8108 25.268 13.8108C24.6362 13.8108 24.0578 14.06 23.6395 14.4693C22.0289 13.3125 19.8131 12.5561 17.3482 12.476L18.416 7.43047L21.9132 8.17795C21.9577 9.06782 22.6874 9.77972 23.5862 9.77972C24.4849 9.77972 25.268 9.02333 25.268 8.09787C25.268 7.1724 24.5116 6.41602 23.5862 6.41602C22.9277 6.41602 22.3581 6.79866 22.0823 7.35038L18.1758 6.5228C18.069 6.4961 17.9533 6.5228 17.8554 6.58509C17.7575 6.64738 17.6952 6.74527 17.6774 6.85205L16.485 12.476C13.9845 12.5472 11.7331 13.2947 10.1047 14.4693C9.68643 14.06 9.10802 13.8108 8.47622 13.8108C7.17701 13.8108 6.12695 14.8609 6.12695 16.1601C6.12695 17.1122 6.69647 17.9398 7.51514 18.3046C7.47955 18.536 7.46175 18.7763 7.46175 19.0165C7.46175 22.6383 11.6708 25.566 16.8677 25.566C22.0645 25.566 26.2736 22.6294 26.2736 19.0165C26.2736 18.7763 26.2558 18.5449 26.2202 18.3135C27.0478 17.9487 27.6173 17.1211 27.6173 16.1601ZM11.484 17.8419C11.484 16.9165 12.2403 16.1601 13.1658 16.1601C14.0913 16.1601 14.8477 16.9165 14.8477 17.8419C14.8477 18.7674 14.0913 19.5238 13.1658 19.5238C12.2403 19.5238 11.484 18.7674 11.484 17.8419ZM20.8543 22.2824C19.7064 23.4303 17.5084 23.5193 16.8677 23.5193C16.227 23.5193 14.0201 23.4303 12.881 22.2824C12.712 22.1133 12.712 21.8374 12.881 21.6683C13.0501 21.4993 13.326 21.4993 13.4951 21.6683C14.2159 22.3891 15.7642 22.6472 16.8677 22.6472C17.9711 22.6472 19.5195 22.3891 20.2403 21.6683C20.4093 21.4993 20.6852 21.4993 20.8543 21.6683C21.0234 21.8374 21.0234 22.1133 20.8543 22.2824ZM20.5606 19.5238C19.6351 19.5238 18.8788 18.7674 18.8788 17.8419C18.8788 16.9165 19.6351 16.1601 20.5606 16.1601C21.4861 16.1601 22.2425 16.9165 22.2425 17.8419C22.2425 18.7674 21.4861 19.5238 20.5606 19.5238Z\" fill=\"white\"></path></svg>					</a>\n			<h2>Address</h2>		\n			<p>Flat 601, C block, Siri Signature\napts, Kakatiya Hills Hyderabad 500081</p>		\n			<h2>Phone</h2>		\n			<p>+91 9133323459<br>\n+91 89778 12345 / +91 9030707212</p>		\n			<h2>Email</h2>		\n			<p>info@beyondcolor.com</p>', 'Footer', '', 'inherit', 'closed', 'closed', '', '188-revision-v1', '', '', '2023-10-02 09:19:32', '2023-10-02 09:19:32', '', 188, 'https://av-advertising.com/beyondc/?p=190', 0, 'revision', '', 0),
(191, 1, '2023-10-02 09:20:00', '2023-10-02 09:20:00', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n															<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<p>it’s time we inspire those who inspired us</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.1422 0C7.22573 0 0 7.22573 0 16.1422C0 22.9853 4.25357 28.8317 10.2602 31.181C10.1178 29.9085 9.99322 27.9419 10.3136 26.5448C10.6072 25.2811 12.2001 18.5182 12.2001 18.5182C12.2001 18.5182 11.7196 17.5482 11.7196 16.1244C11.7196 13.8819 13.0188 12.2001 14.6472 12.2001C16.0265 12.2001 16.6939 13.2323 16.6939 14.4693C16.6939 15.8485 15.813 17.9219 15.3502 19.853C14.9676 21.4636 16.16 22.7806 17.744 22.7806C20.6182 22.7806 22.8162 19.7551 22.8162 15.3947C22.8162 11.5238 20.0398 8.82749 16.0621 8.82749C11.4615 8.82749 8.7652 12.2713 8.7652 15.8308C8.7652 17.21 9.29912 18.705 9.95762 19.5148C10.0911 19.675 10.1 19.8174 10.0644 19.9775C9.94872 20.4848 9.66397 21.5882 9.61057 21.8107C9.54828 22.1043 9.37031 22.1666 9.06775 22.0242C7.04775 21.081 5.78414 18.1444 5.78414 15.7685C5.78414 10.6784 9.47709 5.99771 16.4537 5.99771C22.0509 5.99771 26.4024 9.98432 26.4024 15.3235C26.4024 20.6627 22.8963 25.3701 18.0287 25.3701C16.3914 25.3701 14.8519 24.5159 14.3358 23.5103C14.3358 23.5103 13.526 26.5893 13.3302 27.3545C12.9743 28.7605 11.9865 30.5136 11.328 31.5903C12.8408 32.053 14.4337 32.3111 16.1155 32.3111C25.032 32.3111 32.2577 25.0854 32.2577 16.1689C32.2844 7.22573 25.0587 0 16.1422 0Z\" fill=\"#BCBEC0\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"33\" viewBox=\"0 0 34 33\" fill=\"none\"><path d=\"M17.0693 32.2932C25.9795 32.2932 33.2026 25.0701 33.2026 16.1599C33.2026 7.24974 25.9795 0.0266113 17.0693 0.0266113C8.15916 0.0266113 0.936035 7.24974 0.936035 16.1599C0.936035 25.0701 8.15916 32.2932 17.0693 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M18.315 13.9531C18.5819 13.6595 18.7955 13.3569 19.0714 13.0988C19.9078 12.3069 20.8956 11.9153 22.0524 11.9242C22.6842 11.9242 23.316 11.9776 23.93 12.1556C25.3271 12.556 26.1458 13.526 26.5285 14.8964C26.8221 15.9197 26.8755 16.9787 26.8755 18.0287C26.8755 20.2534 26.8755 22.487 26.8755 24.7116C26.8755 24.9163 26.8132 24.9786 26.6085 24.9697C25.4606 24.9608 24.3127 24.9608 23.1648 24.9697C22.9601 24.9697 22.9156 24.9074 22.9156 24.7205C22.9156 22.6026 22.9156 20.4758 22.9156 18.358C22.9156 17.824 22.88 17.299 22.7287 16.7829C22.4529 15.8307 21.7766 15.3502 20.7799 15.3947C19.4184 15.4659 18.7065 16.1422 18.5374 17.5215C18.493 17.8507 18.4752 18.18 18.4752 18.5181C18.4752 20.5826 18.4752 22.6382 18.4752 24.7027C18.4752 24.9074 18.4218 24.9697 18.2171 24.9697C17.0603 24.9608 15.9034 24.9608 14.7466 24.9697C14.5597 24.9697 14.5063 24.9252 14.5063 24.7294C14.5063 20.6449 14.5063 16.5604 14.5063 12.4848C14.5063 12.2802 14.5686 12.2357 14.7644 12.2357C15.8589 12.2357 16.9624 12.2446 18.0569 12.2357C18.2616 12.2357 18.315 12.298 18.3061 12.4937C18.2972 12.9832 18.3061 13.4726 18.3061 13.962L18.315 13.9531Z\" fill=\"#FDFDFD\"></path><path d=\"M12.0235 18.625C12.0235 20.645 12.0235 22.665 12.0235 24.685C12.0235 24.9074 11.9701 24.9786 11.7387 24.9786C10.5908 24.9697 9.44288 24.9697 8.29495 24.9786C8.10808 24.9786 8.05469 24.9341 8.05469 24.7473C8.05469 20.6539 8.05469 16.5694 8.05469 12.476C8.05469 12.3069 8.09918 12.2446 8.27715 12.2446C9.44288 12.2446 10.6086 12.2535 11.7654 12.2446C11.9879 12.2446 12.0235 12.3336 12.0146 12.5205C12.0146 14.5583 12.0146 16.5961 12.0146 18.6339L12.0235 18.625Z\" fill=\"#FDFDFD\"></path><path d=\"M12.3441 8.18675C12.3441 9.45926 11.3118 10.4915 10.0482 10.4915C8.80238 10.4915 7.76123 9.45926 7.76123 8.21345C7.76123 6.94984 8.79348 5.90869 10.0571 5.90869C11.3118 5.90869 12.3441 6.94094 12.3441 8.18675Z\" fill=\"#FDFDFD\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"33\" viewBox=\"0 0 34 33\" fill=\"none\"><path d=\"M33.1293 16.1599C33.1293 7.25234 25.9125 0.0266113 17.0049 0.0266113C8.09731 0.0266113 0.871582 7.25234 0.871582 16.1599C0.871582 24.2132 6.77141 30.8872 14.4866 32.0975V20.8228H10.3932V16.1599H14.4866V12.6093C14.4866 8.56934 16.8981 6.33577 20.5821 6.33577C22.3441 6.33577 24.195 6.64723 24.195 6.64723V10.616H22.1572C20.155 10.616 19.5321 11.8619 19.5321 13.1344V16.1599H24.0081L23.2962 20.8228H19.541V32.0975C27.2562 30.8872 33.156 24.2132 33.156 16.1599H33.1293Z\" fill=\"#BCBEC0\"></path><path d=\"M23.2786 20.823L23.9905 16.1601H19.5144V13.1345C19.5144 11.862 20.1373 10.6162 22.1395 10.6162H24.1773V6.64739C24.1773 6.64739 22.3353 6.33594 20.5645 6.33594C16.8804 6.33594 14.4689 8.56951 14.4689 12.6095V16.1601H10.3755V20.823H14.4689V32.0976C15.2876 32.2222 16.1329 32.2934 16.9872 32.2934C17.8415 32.2934 18.6869 32.2222 19.5055 32.0976V20.823H23.2608H23.2786Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"33\" viewBox=\"0 0 34 33\" fill=\"none\"><path d=\"M16.9321 32.2932C25.8423 32.2932 33.0654 25.0701 33.0654 16.1599C33.0654 7.24974 25.8423 0.0266113 16.9321 0.0266113C8.02196 0.0266113 0.798828 7.24974 0.798828 16.1599C0.798828 25.0701 8.02196 32.2932 16.9321 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M16.9318 7.83093C19.6459 7.83093 19.9663 7.83983 21.0341 7.89322C22.0219 7.93771 22.5647 8.10679 22.9206 8.24027C23.3923 8.42714 23.7304 8.64071 24.0864 8.99666C24.4423 9.3526 24.6648 9.69075 24.8427 10.1624C24.9851 10.5183 25.1453 11.0612 25.1898 12.0489C25.2343 13.1167 25.2521 13.4371 25.2521 16.1512C25.2521 18.8653 25.2432 19.1856 25.1898 20.2535C25.1453 21.2412 24.9762 21.7841 24.8427 22.14C24.6559 22.6116 24.4423 22.9498 24.0864 23.3057C23.7304 23.6617 23.3923 23.8841 22.9206 24.0621C22.5647 24.2045 22.0219 24.3647 21.0341 24.4092C19.9663 24.4537 19.6459 24.4715 16.9318 24.4715C14.2177 24.4715 13.8974 24.4626 12.8295 24.4092C11.8418 24.3647 11.299 24.1956 10.943 24.0621C10.4714 23.8752 10.1332 23.6617 9.77729 23.3057C9.42134 22.9498 9.19887 22.6116 9.0209 22.14C8.87852 21.7841 8.71834 21.2412 8.67385 20.2535C8.62935 19.1856 8.61155 18.8653 8.61155 16.1512C8.61155 13.4371 8.62046 13.1167 8.67385 12.0489C8.71834 11.0612 8.88742 10.5183 9.0209 10.1624C9.20777 9.69075 9.42134 9.3526 9.77729 8.99666C10.1332 8.64071 10.4714 8.41824 10.943 8.24027C11.299 8.09789 11.8418 7.93771 12.8295 7.89322C13.8974 7.84873 14.2177 7.83093 16.9318 7.83093ZM16.9318 5.9978C14.1732 5.9978 13.8262 6.0067 12.7406 6.06009C11.6638 6.11349 10.9252 6.28256 10.2756 6.53172C9.60821 6.78979 9.03869 7.13683 8.47808 7.70635C7.91746 8.26697 7.57042 8.83648 7.30346 9.50388C7.05429 10.1535 6.87631 10.8921 6.83181 11.9688C6.77842 13.0545 6.76953 13.4015 6.76953 16.1601C6.76953 18.9187 6.77842 19.2657 6.83181 20.3514C6.88521 21.4281 7.05429 22.1667 7.30346 22.8163C7.56152 23.4837 7.90856 24.0532 8.47808 24.6138C9.03869 25.1745 9.60821 25.5215 10.2756 25.7885C10.9252 26.0376 11.6638 26.2156 12.7406 26.2601C13.8262 26.3135 14.1732 26.3224 16.9318 26.3224C19.6904 26.3224 20.0375 26.3135 21.1231 26.2601C22.1998 26.2067 22.9384 26.0376 23.588 25.7885C24.2554 25.5304 24.8249 25.1834 25.3856 24.6138C25.9462 24.0532 26.2932 23.4837 26.5602 22.8163C26.8094 22.1667 26.9873 21.4281 27.0318 20.3514C27.0852 19.2657 27.0941 18.9187 27.0941 16.1601C27.0941 13.4015 27.0852 13.0545 27.0318 11.9688C26.9784 10.8921 26.8094 10.1535 26.5602 9.50388C26.3021 8.83648 25.9551 8.26697 25.3856 7.70635C24.8249 7.14573 24.2554 6.79868 23.588 6.53172C22.9384 6.28256 22.1998 6.10459 21.1231 6.06009C20.0375 6.0067 19.6904 5.9978 16.9318 5.9978Z\" fill=\"white\"></path><path d=\"M16.9319 10.9453C14.0487 10.9453 11.7173 13.2768 11.7173 16.1599C11.7173 19.0431 14.0487 21.3746 16.9319 21.3746C19.8151 21.3746 22.1465 19.0431 22.1465 16.1599C22.1465 13.2768 19.8151 10.9453 16.9319 10.9453ZM16.9319 19.5503C15.0632 19.5503 13.5504 18.0376 13.5504 16.1688C13.5504 14.3001 15.0632 12.7873 16.9319 12.7873C18.8006 12.7873 20.3134 14.3001 20.3134 16.1688C20.3134 18.0376 18.8006 19.5503 16.9319 19.5503Z\" fill=\"white\"></path><path d=\"M22.3602 11.9597C23.0335 11.9597 23.5794 11.4139 23.5794 10.7406C23.5794 10.0673 23.0335 9.52148 22.3602 9.52148C21.6869 9.52148 21.1411 10.0673 21.1411 10.7406C21.1411 11.4139 21.6869 11.9597 22.3602 11.9597Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.8677 32.2932C25.7779 32.2932 33.001 25.0701 33.001 16.1599C33.001 7.24974 25.7779 0.0266113 16.8677 0.0266113C7.95751 0.0266113 0.734375 7.24974 0.734375 16.1599C0.734375 25.0701 7.95751 32.2932 16.8677 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M27.6173 16.1601C27.6173 14.8609 26.5672 13.8108 25.268 13.8108C24.6362 13.8108 24.0578 14.06 23.6395 14.4693C22.0289 13.3125 19.8131 12.5561 17.3482 12.476L18.416 7.43047L21.9132 8.17795C21.9577 9.06782 22.6874 9.77972 23.5862 9.77972C24.4849 9.77972 25.268 9.02333 25.268 8.09787C25.268 7.1724 24.5116 6.41602 23.5862 6.41602C22.9277 6.41602 22.3581 6.79866 22.0823 7.35038L18.1758 6.5228C18.069 6.4961 17.9533 6.5228 17.8554 6.58509C17.7575 6.64738 17.6952 6.74527 17.6774 6.85205L16.485 12.476C13.9845 12.5472 11.7331 13.2947 10.1047 14.4693C9.68643 14.06 9.10802 13.8108 8.47622 13.8108C7.17701 13.8108 6.12695 14.8609 6.12695 16.1601C6.12695 17.1122 6.69647 17.9398 7.51514 18.3046C7.47955 18.536 7.46175 18.7763 7.46175 19.0165C7.46175 22.6383 11.6708 25.566 16.8677 25.566C22.0645 25.566 26.2736 22.6294 26.2736 19.0165C26.2736 18.7763 26.2558 18.5449 26.2202 18.3135C27.0478 17.9487 27.6173 17.1211 27.6173 16.1601ZM11.484 17.8419C11.484 16.9165 12.2403 16.1601 13.1658 16.1601C14.0913 16.1601 14.8477 16.9165 14.8477 17.8419C14.8477 18.7674 14.0913 19.5238 13.1658 19.5238C12.2403 19.5238 11.484 18.7674 11.484 17.8419ZM20.8543 22.2824C19.7064 23.4303 17.5084 23.5193 16.8677 23.5193C16.227 23.5193 14.0201 23.4303 12.881 22.2824C12.712 22.1133 12.712 21.8374 12.881 21.6683C13.0501 21.4993 13.326 21.4993 13.4951 21.6683C14.2159 22.3891 15.7642 22.6472 16.8677 22.6472C17.9711 22.6472 19.5195 22.3891 20.2403 21.6683C20.4093 21.4993 20.6852 21.4993 20.8543 21.6683C21.0234 21.8374 21.0234 22.1133 20.8543 22.2824ZM20.5606 19.5238C19.6351 19.5238 18.8788 18.7674 18.8788 17.8419C18.8788 16.9165 19.6351 16.1601 20.5606 16.1601C21.4861 16.1601 22.2425 16.9165 22.2425 17.8419C22.2425 18.7674 21.4861 19.5238 20.5606 19.5238Z\" fill=\"white\"></path></svg>					</a>\n			<h2>Address</h2>		\n			<p>Flat 601, C block, Siri Signature\napts, Kakatiya Hills Hyderabad 500081</p>		\n			<h2>Phone</h2>		\n			<p>+91 9133323459<br>\n+91 89778 12345 / +91 9030707212</p>		\n			<h2>Email</h2>		\n			<p>info@beyondcolor.com</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 09:20:00', '2023-10-02 09:20:00', '', 13, 'https://av-advertising.com/beyondc/?p=191', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(192, 1, '2023-10-02 09:20:00', '2023-10-02 09:20:00', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n															<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<p>it’s time we inspire those who inspired us</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.1422 0C7.22573 0 0 7.22573 0 16.1422C0 22.9853 4.25357 28.8317 10.2602 31.181C10.1178 29.9085 9.99322 27.9419 10.3136 26.5448C10.6072 25.2811 12.2001 18.5182 12.2001 18.5182C12.2001 18.5182 11.7196 17.5482 11.7196 16.1244C11.7196 13.8819 13.0188 12.2001 14.6472 12.2001C16.0265 12.2001 16.6939 13.2323 16.6939 14.4693C16.6939 15.8485 15.813 17.9219 15.3502 19.853C14.9676 21.4636 16.16 22.7806 17.744 22.7806C20.6182 22.7806 22.8162 19.7551 22.8162 15.3947C22.8162 11.5238 20.0398 8.82749 16.0621 8.82749C11.4615 8.82749 8.7652 12.2713 8.7652 15.8308C8.7652 17.21 9.29912 18.705 9.95762 19.5148C10.0911 19.675 10.1 19.8174 10.0644 19.9775C9.94872 20.4848 9.66397 21.5882 9.61057 21.8107C9.54828 22.1043 9.37031 22.1666 9.06775 22.0242C7.04775 21.081 5.78414 18.1444 5.78414 15.7685C5.78414 10.6784 9.47709 5.99771 16.4537 5.99771C22.0509 5.99771 26.4024 9.98432 26.4024 15.3235C26.4024 20.6627 22.8963 25.3701 18.0287 25.3701C16.3914 25.3701 14.8519 24.5159 14.3358 23.5103C14.3358 23.5103 13.526 26.5893 13.3302 27.3545C12.9743 28.7605 11.9865 30.5136 11.328 31.5903C12.8408 32.053 14.4337 32.3111 16.1155 32.3111C25.032 32.3111 32.2577 25.0854 32.2577 16.1689C32.2844 7.22573 25.0587 0 16.1422 0Z\" fill=\"#BCBEC0\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"33\" viewBox=\"0 0 34 33\" fill=\"none\"><path d=\"M17.0693 32.2932C25.9795 32.2932 33.2026 25.0701 33.2026 16.1599C33.2026 7.24974 25.9795 0.0266113 17.0693 0.0266113C8.15916 0.0266113 0.936035 7.24974 0.936035 16.1599C0.936035 25.0701 8.15916 32.2932 17.0693 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M18.315 13.9531C18.5819 13.6595 18.7955 13.3569 19.0714 13.0988C19.9078 12.3069 20.8956 11.9153 22.0524 11.9242C22.6842 11.9242 23.316 11.9776 23.93 12.1556C25.3271 12.556 26.1458 13.526 26.5285 14.8964C26.8221 15.9197 26.8755 16.9787 26.8755 18.0287C26.8755 20.2534 26.8755 22.487 26.8755 24.7116C26.8755 24.9163 26.8132 24.9786 26.6085 24.9697C25.4606 24.9608 24.3127 24.9608 23.1648 24.9697C22.9601 24.9697 22.9156 24.9074 22.9156 24.7205C22.9156 22.6026 22.9156 20.4758 22.9156 18.358C22.9156 17.824 22.88 17.299 22.7287 16.7829C22.4529 15.8307 21.7766 15.3502 20.7799 15.3947C19.4184 15.4659 18.7065 16.1422 18.5374 17.5215C18.493 17.8507 18.4752 18.18 18.4752 18.5181C18.4752 20.5826 18.4752 22.6382 18.4752 24.7027C18.4752 24.9074 18.4218 24.9697 18.2171 24.9697C17.0603 24.9608 15.9034 24.9608 14.7466 24.9697C14.5597 24.9697 14.5063 24.9252 14.5063 24.7294C14.5063 20.6449 14.5063 16.5604 14.5063 12.4848C14.5063 12.2802 14.5686 12.2357 14.7644 12.2357C15.8589 12.2357 16.9624 12.2446 18.0569 12.2357C18.2616 12.2357 18.315 12.298 18.3061 12.4937C18.2972 12.9832 18.3061 13.4726 18.3061 13.962L18.315 13.9531Z\" fill=\"#FDFDFD\"></path><path d=\"M12.0235 18.625C12.0235 20.645 12.0235 22.665 12.0235 24.685C12.0235 24.9074 11.9701 24.9786 11.7387 24.9786C10.5908 24.9697 9.44288 24.9697 8.29495 24.9786C8.10808 24.9786 8.05469 24.9341 8.05469 24.7473C8.05469 20.6539 8.05469 16.5694 8.05469 12.476C8.05469 12.3069 8.09918 12.2446 8.27715 12.2446C9.44288 12.2446 10.6086 12.2535 11.7654 12.2446C11.9879 12.2446 12.0235 12.3336 12.0146 12.5205C12.0146 14.5583 12.0146 16.5961 12.0146 18.6339L12.0235 18.625Z\" fill=\"#FDFDFD\"></path><path d=\"M12.3441 8.18675C12.3441 9.45926 11.3118 10.4915 10.0482 10.4915C8.80238 10.4915 7.76123 9.45926 7.76123 8.21345C7.76123 6.94984 8.79348 5.90869 10.0571 5.90869C11.3118 5.90869 12.3441 6.94094 12.3441 8.18675Z\" fill=\"#FDFDFD\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"33\" viewBox=\"0 0 34 33\" fill=\"none\"><path d=\"M33.1293 16.1599C33.1293 7.25234 25.9125 0.0266113 17.0049 0.0266113C8.09731 0.0266113 0.871582 7.25234 0.871582 16.1599C0.871582 24.2132 6.77141 30.8872 14.4866 32.0975V20.8228H10.3932V16.1599H14.4866V12.6093C14.4866 8.56934 16.8981 6.33577 20.5821 6.33577C22.3441 6.33577 24.195 6.64723 24.195 6.64723V10.616H22.1572C20.155 10.616 19.5321 11.8619 19.5321 13.1344V16.1599H24.0081L23.2962 20.8228H19.541V32.0975C27.2562 30.8872 33.156 24.2132 33.156 16.1599H33.1293Z\" fill=\"#BCBEC0\"></path><path d=\"M23.2786 20.823L23.9905 16.1601H19.5144V13.1345C19.5144 11.862 20.1373 10.6162 22.1395 10.6162H24.1773V6.64739C24.1773 6.64739 22.3353 6.33594 20.5645 6.33594C16.8804 6.33594 14.4689 8.56951 14.4689 12.6095V16.1601H10.3755V20.823H14.4689V32.0976C15.2876 32.2222 16.1329 32.2934 16.9872 32.2934C17.8415 32.2934 18.6869 32.2222 19.5055 32.0976V20.823H23.2608H23.2786Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"33\" viewBox=\"0 0 34 33\" fill=\"none\"><path d=\"M16.9321 32.2932C25.8423 32.2932 33.0654 25.0701 33.0654 16.1599C33.0654 7.24974 25.8423 0.0266113 16.9321 0.0266113C8.02196 0.0266113 0.798828 7.24974 0.798828 16.1599C0.798828 25.0701 8.02196 32.2932 16.9321 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M16.9318 7.83093C19.6459 7.83093 19.9663 7.83983 21.0341 7.89322C22.0219 7.93771 22.5647 8.10679 22.9206 8.24027C23.3923 8.42714 23.7304 8.64071 24.0864 8.99666C24.4423 9.3526 24.6648 9.69075 24.8427 10.1624C24.9851 10.5183 25.1453 11.0612 25.1898 12.0489C25.2343 13.1167 25.2521 13.4371 25.2521 16.1512C25.2521 18.8653 25.2432 19.1856 25.1898 20.2535C25.1453 21.2412 24.9762 21.7841 24.8427 22.14C24.6559 22.6116 24.4423 22.9498 24.0864 23.3057C23.7304 23.6617 23.3923 23.8841 22.9206 24.0621C22.5647 24.2045 22.0219 24.3647 21.0341 24.4092C19.9663 24.4537 19.6459 24.4715 16.9318 24.4715C14.2177 24.4715 13.8974 24.4626 12.8295 24.4092C11.8418 24.3647 11.299 24.1956 10.943 24.0621C10.4714 23.8752 10.1332 23.6617 9.77729 23.3057C9.42134 22.9498 9.19887 22.6116 9.0209 22.14C8.87852 21.7841 8.71834 21.2412 8.67385 20.2535C8.62935 19.1856 8.61155 18.8653 8.61155 16.1512C8.61155 13.4371 8.62046 13.1167 8.67385 12.0489C8.71834 11.0612 8.88742 10.5183 9.0209 10.1624C9.20777 9.69075 9.42134 9.3526 9.77729 8.99666C10.1332 8.64071 10.4714 8.41824 10.943 8.24027C11.299 8.09789 11.8418 7.93771 12.8295 7.89322C13.8974 7.84873 14.2177 7.83093 16.9318 7.83093ZM16.9318 5.9978C14.1732 5.9978 13.8262 6.0067 12.7406 6.06009C11.6638 6.11349 10.9252 6.28256 10.2756 6.53172C9.60821 6.78979 9.03869 7.13683 8.47808 7.70635C7.91746 8.26697 7.57042 8.83648 7.30346 9.50388C7.05429 10.1535 6.87631 10.8921 6.83181 11.9688C6.77842 13.0545 6.76953 13.4015 6.76953 16.1601C6.76953 18.9187 6.77842 19.2657 6.83181 20.3514C6.88521 21.4281 7.05429 22.1667 7.30346 22.8163C7.56152 23.4837 7.90856 24.0532 8.47808 24.6138C9.03869 25.1745 9.60821 25.5215 10.2756 25.7885C10.9252 26.0376 11.6638 26.2156 12.7406 26.2601C13.8262 26.3135 14.1732 26.3224 16.9318 26.3224C19.6904 26.3224 20.0375 26.3135 21.1231 26.2601C22.1998 26.2067 22.9384 26.0376 23.588 25.7885C24.2554 25.5304 24.8249 25.1834 25.3856 24.6138C25.9462 24.0532 26.2932 23.4837 26.5602 22.8163C26.8094 22.1667 26.9873 21.4281 27.0318 20.3514C27.0852 19.2657 27.0941 18.9187 27.0941 16.1601C27.0941 13.4015 27.0852 13.0545 27.0318 11.9688C26.9784 10.8921 26.8094 10.1535 26.5602 9.50388C26.3021 8.83648 25.9551 8.26697 25.3856 7.70635C24.8249 7.14573 24.2554 6.79868 23.588 6.53172C22.9384 6.28256 22.1998 6.10459 21.1231 6.06009C20.0375 6.0067 19.6904 5.9978 16.9318 5.9978Z\" fill=\"white\"></path><path d=\"M16.9319 10.9453C14.0487 10.9453 11.7173 13.2768 11.7173 16.1599C11.7173 19.0431 14.0487 21.3746 16.9319 21.3746C19.8151 21.3746 22.1465 19.0431 22.1465 16.1599C22.1465 13.2768 19.8151 10.9453 16.9319 10.9453ZM16.9319 19.5503C15.0632 19.5503 13.5504 18.0376 13.5504 16.1688C13.5504 14.3001 15.0632 12.7873 16.9319 12.7873C18.8006 12.7873 20.3134 14.3001 20.3134 16.1688C20.3134 18.0376 18.8006 19.5503 16.9319 19.5503Z\" fill=\"white\"></path><path d=\"M22.3602 11.9597C23.0335 11.9597 23.5794 11.4139 23.5794 10.7406C23.5794 10.0673 23.0335 9.52148 22.3602 9.52148C21.6869 9.52148 21.1411 10.0673 21.1411 10.7406C21.1411 11.4139 21.6869 11.9597 22.3602 11.9597Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.8677 32.2932C25.7779 32.2932 33.001 25.0701 33.001 16.1599C33.001 7.24974 25.7779 0.0266113 16.8677 0.0266113C7.95751 0.0266113 0.734375 7.24974 0.734375 16.1599C0.734375 25.0701 7.95751 32.2932 16.8677 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M27.6173 16.1601C27.6173 14.8609 26.5672 13.8108 25.268 13.8108C24.6362 13.8108 24.0578 14.06 23.6395 14.4693C22.0289 13.3125 19.8131 12.5561 17.3482 12.476L18.416 7.43047L21.9132 8.17795C21.9577 9.06782 22.6874 9.77972 23.5862 9.77972C24.4849 9.77972 25.268 9.02333 25.268 8.09787C25.268 7.1724 24.5116 6.41602 23.5862 6.41602C22.9277 6.41602 22.3581 6.79866 22.0823 7.35038L18.1758 6.5228C18.069 6.4961 17.9533 6.5228 17.8554 6.58509C17.7575 6.64738 17.6952 6.74527 17.6774 6.85205L16.485 12.476C13.9845 12.5472 11.7331 13.2947 10.1047 14.4693C9.68643 14.06 9.10802 13.8108 8.47622 13.8108C7.17701 13.8108 6.12695 14.8609 6.12695 16.1601C6.12695 17.1122 6.69647 17.9398 7.51514 18.3046C7.47955 18.536 7.46175 18.7763 7.46175 19.0165C7.46175 22.6383 11.6708 25.566 16.8677 25.566C22.0645 25.566 26.2736 22.6294 26.2736 19.0165C26.2736 18.7763 26.2558 18.5449 26.2202 18.3135C27.0478 17.9487 27.6173 17.1211 27.6173 16.1601ZM11.484 17.8419C11.484 16.9165 12.2403 16.1601 13.1658 16.1601C14.0913 16.1601 14.8477 16.9165 14.8477 17.8419C14.8477 18.7674 14.0913 19.5238 13.1658 19.5238C12.2403 19.5238 11.484 18.7674 11.484 17.8419ZM20.8543 22.2824C19.7064 23.4303 17.5084 23.5193 16.8677 23.5193C16.227 23.5193 14.0201 23.4303 12.881 22.2824C12.712 22.1133 12.712 21.8374 12.881 21.6683C13.0501 21.4993 13.326 21.4993 13.4951 21.6683C14.2159 22.3891 15.7642 22.6472 16.8677 22.6472C17.9711 22.6472 19.5195 22.3891 20.2403 21.6683C20.4093 21.4993 20.6852 21.4993 20.8543 21.6683C21.0234 21.8374 21.0234 22.1133 20.8543 22.2824ZM20.5606 19.5238C19.6351 19.5238 18.8788 18.7674 18.8788 17.8419C18.8788 16.9165 19.6351 16.1601 20.5606 16.1601C21.4861 16.1601 22.2425 16.9165 22.2425 17.8419C22.2425 18.7674 21.4861 19.5238 20.5606 19.5238Z\" fill=\"white\"></path></svg>					</a>\n			<h2>Address</h2>		\n			<p>Flat 601, C block, Siri Signature\napts, Kakatiya Hills Hyderabad 500081</p>		\n			<h2>Phone</h2>		\n			<p>+91 9133323459<br>\n+91 89778 12345 / +91 9030707212</p>		\n			<h2>Email</h2>		\n			<p>info@beyondcolor.com</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 09:20:00', '2023-10-02 09:20:00', '', 13, 'https://av-advertising.com/beyondc/?p=192', 0, 'revision', '', 0),
(193, 1, '2023-10-02 09:20:01', '2023-10-02 09:20:01', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 09:20:01', '2023-10-02 09:20:01', '', 13, 'https://av-advertising.com/beyondc/?p=193', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(194, 1, '2023-10-02 09:21:18', '2023-10-02 09:21:18', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>it’s time we inspire those who inspired us</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.1422 0C7.22573 0 0 7.22573 0 16.1422C0 22.9853 4.25357 28.8317 10.2602 31.181C10.1178 29.9085 9.99322 27.9419 10.3136 26.5448C10.6072 25.2811 12.2001 18.5182 12.2001 18.5182C12.2001 18.5182 11.7196 17.5482 11.7196 16.1244C11.7196 13.8819 13.0188 12.2001 14.6472 12.2001C16.0265 12.2001 16.6939 13.2323 16.6939 14.4693C16.6939 15.8485 15.813 17.9219 15.3502 19.853C14.9676 21.4636 16.16 22.7806 17.744 22.7806C20.6182 22.7806 22.8162 19.7551 22.8162 15.3947C22.8162 11.5238 20.0398 8.82749 16.0621 8.82749C11.4615 8.82749 8.7652 12.2713 8.7652 15.8308C8.7652 17.21 9.29912 18.705 9.95762 19.5148C10.0911 19.675 10.1 19.8174 10.0644 19.9775C9.94872 20.4848 9.66397 21.5882 9.61057 21.8107C9.54828 22.1043 9.37031 22.1666 9.06775 22.0242C7.04775 21.081 5.78414 18.1444 5.78414 15.7685C5.78414 10.6784 9.47709 5.99771 16.4537 5.99771C22.0509 5.99771 26.4024 9.98432 26.4024 15.3235C26.4024 20.6627 22.8963 25.3701 18.0287 25.3701C16.3914 25.3701 14.8519 24.5159 14.3358 23.5103C14.3358 23.5103 13.526 26.5893 13.3302 27.3545C12.9743 28.7605 11.9865 30.5136 11.328 31.5903C12.8408 32.053 14.4337 32.3111 16.1155 32.3111C25.032 32.3111 32.2577 25.0854 32.2577 16.1689C32.2844 7.22573 25.0587 0 16.1422 0Z\" fill=\"#BCBEC0\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"33\" viewBox=\"0 0 34 33\" fill=\"none\"><path d=\"M17.0693 32.2932C25.9795 32.2932 33.2026 25.0701 33.2026 16.1599C33.2026 7.24974 25.9795 0.0266113 17.0693 0.0266113C8.15916 0.0266113 0.936035 7.24974 0.936035 16.1599C0.936035 25.0701 8.15916 32.2932 17.0693 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M18.315 13.9531C18.5819 13.6595 18.7955 13.3569 19.0714 13.0988C19.9078 12.3069 20.8956 11.9153 22.0524 11.9242C22.6842 11.9242 23.316 11.9776 23.93 12.1556C25.3271 12.556 26.1458 13.526 26.5285 14.8964C26.8221 15.9197 26.8755 16.9787 26.8755 18.0287C26.8755 20.2534 26.8755 22.487 26.8755 24.7116C26.8755 24.9163 26.8132 24.9786 26.6085 24.9697C25.4606 24.9608 24.3127 24.9608 23.1648 24.9697C22.9601 24.9697 22.9156 24.9074 22.9156 24.7205C22.9156 22.6026 22.9156 20.4758 22.9156 18.358C22.9156 17.824 22.88 17.299 22.7287 16.7829C22.4529 15.8307 21.7766 15.3502 20.7799 15.3947C19.4184 15.4659 18.7065 16.1422 18.5374 17.5215C18.493 17.8507 18.4752 18.18 18.4752 18.5181C18.4752 20.5826 18.4752 22.6382 18.4752 24.7027C18.4752 24.9074 18.4218 24.9697 18.2171 24.9697C17.0603 24.9608 15.9034 24.9608 14.7466 24.9697C14.5597 24.9697 14.5063 24.9252 14.5063 24.7294C14.5063 20.6449 14.5063 16.5604 14.5063 12.4848C14.5063 12.2802 14.5686 12.2357 14.7644 12.2357C15.8589 12.2357 16.9624 12.2446 18.0569 12.2357C18.2616 12.2357 18.315 12.298 18.3061 12.4937C18.2972 12.9832 18.3061 13.4726 18.3061 13.962L18.315 13.9531Z\" fill=\"#FDFDFD\"></path><path d=\"M12.0235 18.625C12.0235 20.645 12.0235 22.665 12.0235 24.685C12.0235 24.9074 11.9701 24.9786 11.7387 24.9786C10.5908 24.9697 9.44288 24.9697 8.29495 24.9786C8.10808 24.9786 8.05469 24.9341 8.05469 24.7473C8.05469 20.6539 8.05469 16.5694 8.05469 12.476C8.05469 12.3069 8.09918 12.2446 8.27715 12.2446C9.44288 12.2446 10.6086 12.2535 11.7654 12.2446C11.9879 12.2446 12.0235 12.3336 12.0146 12.5205C12.0146 14.5583 12.0146 16.5961 12.0146 18.6339L12.0235 18.625Z\" fill=\"#FDFDFD\"></path><path d=\"M12.3441 8.18675C12.3441 9.45926 11.3118 10.4915 10.0482 10.4915C8.80238 10.4915 7.76123 9.45926 7.76123 8.21345C7.76123 6.94984 8.79348 5.90869 10.0571 5.90869C11.3118 5.90869 12.3441 6.94094 12.3441 8.18675Z\" fill=\"#FDFDFD\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"33\" viewBox=\"0 0 34 33\" fill=\"none\"><path d=\"M33.1293 16.1599C33.1293 7.25234 25.9125 0.0266113 17.0049 0.0266113C8.09731 0.0266113 0.871582 7.25234 0.871582 16.1599C0.871582 24.2132 6.77141 30.8872 14.4866 32.0975V20.8228H10.3932V16.1599H14.4866V12.6093C14.4866 8.56934 16.8981 6.33577 20.5821 6.33577C22.3441 6.33577 24.195 6.64723 24.195 6.64723V10.616H22.1572C20.155 10.616 19.5321 11.8619 19.5321 13.1344V16.1599H24.0081L23.2962 20.8228H19.541V32.0975C27.2562 30.8872 33.156 24.2132 33.156 16.1599H33.1293Z\" fill=\"#BCBEC0\"></path><path d=\"M23.2786 20.823L23.9905 16.1601H19.5144V13.1345C19.5144 11.862 20.1373 10.6162 22.1395 10.6162H24.1773V6.64739C24.1773 6.64739 22.3353 6.33594 20.5645 6.33594C16.8804 6.33594 14.4689 8.56951 14.4689 12.6095V16.1601H10.3755V20.823H14.4689V32.0976C15.2876 32.2222 16.1329 32.2934 16.9872 32.2934C17.8415 32.2934 18.6869 32.2222 19.5055 32.0976V20.823H23.2608H23.2786Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"33\" viewBox=\"0 0 34 33\" fill=\"none\"><path d=\"M16.9321 32.2932C25.8423 32.2932 33.0654 25.0701 33.0654 16.1599C33.0654 7.24974 25.8423 0.0266113 16.9321 0.0266113C8.02196 0.0266113 0.798828 7.24974 0.798828 16.1599C0.798828 25.0701 8.02196 32.2932 16.9321 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M16.9318 7.83093C19.6459 7.83093 19.9663 7.83983 21.0341 7.89322C22.0219 7.93771 22.5647 8.10679 22.9206 8.24027C23.3923 8.42714 23.7304 8.64071 24.0864 8.99666C24.4423 9.3526 24.6648 9.69075 24.8427 10.1624C24.9851 10.5183 25.1453 11.0612 25.1898 12.0489C25.2343 13.1167 25.2521 13.4371 25.2521 16.1512C25.2521 18.8653 25.2432 19.1856 25.1898 20.2535C25.1453 21.2412 24.9762 21.7841 24.8427 22.14C24.6559 22.6116 24.4423 22.9498 24.0864 23.3057C23.7304 23.6617 23.3923 23.8841 22.9206 24.0621C22.5647 24.2045 22.0219 24.3647 21.0341 24.4092C19.9663 24.4537 19.6459 24.4715 16.9318 24.4715C14.2177 24.4715 13.8974 24.4626 12.8295 24.4092C11.8418 24.3647 11.299 24.1956 10.943 24.0621C10.4714 23.8752 10.1332 23.6617 9.77729 23.3057C9.42134 22.9498 9.19887 22.6116 9.0209 22.14C8.87852 21.7841 8.71834 21.2412 8.67385 20.2535C8.62935 19.1856 8.61155 18.8653 8.61155 16.1512C8.61155 13.4371 8.62046 13.1167 8.67385 12.0489C8.71834 11.0612 8.88742 10.5183 9.0209 10.1624C9.20777 9.69075 9.42134 9.3526 9.77729 8.99666C10.1332 8.64071 10.4714 8.41824 10.943 8.24027C11.299 8.09789 11.8418 7.93771 12.8295 7.89322C13.8974 7.84873 14.2177 7.83093 16.9318 7.83093ZM16.9318 5.9978C14.1732 5.9978 13.8262 6.0067 12.7406 6.06009C11.6638 6.11349 10.9252 6.28256 10.2756 6.53172C9.60821 6.78979 9.03869 7.13683 8.47808 7.70635C7.91746 8.26697 7.57042 8.83648 7.30346 9.50388C7.05429 10.1535 6.87631 10.8921 6.83181 11.9688C6.77842 13.0545 6.76953 13.4015 6.76953 16.1601C6.76953 18.9187 6.77842 19.2657 6.83181 20.3514C6.88521 21.4281 7.05429 22.1667 7.30346 22.8163C7.56152 23.4837 7.90856 24.0532 8.47808 24.6138C9.03869 25.1745 9.60821 25.5215 10.2756 25.7885C10.9252 26.0376 11.6638 26.2156 12.7406 26.2601C13.8262 26.3135 14.1732 26.3224 16.9318 26.3224C19.6904 26.3224 20.0375 26.3135 21.1231 26.2601C22.1998 26.2067 22.9384 26.0376 23.588 25.7885C24.2554 25.5304 24.8249 25.1834 25.3856 24.6138C25.9462 24.0532 26.2932 23.4837 26.5602 22.8163C26.8094 22.1667 26.9873 21.4281 27.0318 20.3514C27.0852 19.2657 27.0941 18.9187 27.0941 16.1601C27.0941 13.4015 27.0852 13.0545 27.0318 11.9688C26.9784 10.8921 26.8094 10.1535 26.5602 9.50388C26.3021 8.83648 25.9551 8.26697 25.3856 7.70635C24.8249 7.14573 24.2554 6.79868 23.588 6.53172C22.9384 6.28256 22.1998 6.10459 21.1231 6.06009C20.0375 6.0067 19.6904 5.9978 16.9318 5.9978Z\" fill=\"white\"></path><path d=\"M16.9319 10.9453C14.0487 10.9453 11.7173 13.2768 11.7173 16.1599C11.7173 19.0431 14.0487 21.3746 16.9319 21.3746C19.8151 21.3746 22.1465 19.0431 22.1465 16.1599C22.1465 13.2768 19.8151 10.9453 16.9319 10.9453ZM16.9319 19.5503C15.0632 19.5503 13.5504 18.0376 13.5504 16.1688C13.5504 14.3001 15.0632 12.7873 16.9319 12.7873C18.8006 12.7873 20.3134 14.3001 20.3134 16.1688C20.3134 18.0376 18.8006 19.5503 16.9319 19.5503Z\" fill=\"white\"></path><path d=\"M22.3602 11.9597C23.0335 11.9597 23.5794 11.4139 23.5794 10.7406C23.5794 10.0673 23.0335 9.52148 22.3602 9.52148C21.6869 9.52148 21.1411 10.0673 21.1411 10.7406C21.1411 11.4139 21.6869 11.9597 22.3602 11.9597Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.8677 32.2932C25.7779 32.2932 33.001 25.0701 33.001 16.1599C33.001 7.24974 25.7779 0.0266113 16.8677 0.0266113C7.95751 0.0266113 0.734375 7.24974 0.734375 16.1599C0.734375 25.0701 7.95751 32.2932 16.8677 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M27.6173 16.1601C27.6173 14.8609 26.5672 13.8108 25.268 13.8108C24.6362 13.8108 24.0578 14.06 23.6395 14.4693C22.0289 13.3125 19.8131 12.5561 17.3482 12.476L18.416 7.43047L21.9132 8.17795C21.9577 9.06782 22.6874 9.77972 23.5862 9.77972C24.4849 9.77972 25.268 9.02333 25.268 8.09787C25.268 7.1724 24.5116 6.41602 23.5862 6.41602C22.9277 6.41602 22.3581 6.79866 22.0823 7.35038L18.1758 6.5228C18.069 6.4961 17.9533 6.5228 17.8554 6.58509C17.7575 6.64738 17.6952 6.74527 17.6774 6.85205L16.485 12.476C13.9845 12.5472 11.7331 13.2947 10.1047 14.4693C9.68643 14.06 9.10802 13.8108 8.47622 13.8108C7.17701 13.8108 6.12695 14.8609 6.12695 16.1601C6.12695 17.1122 6.69647 17.9398 7.51514 18.3046C7.47955 18.536 7.46175 18.7763 7.46175 19.0165C7.46175 22.6383 11.6708 25.566 16.8677 25.566C22.0645 25.566 26.2736 22.6294 26.2736 19.0165C26.2736 18.7763 26.2558 18.5449 26.2202 18.3135C27.0478 17.9487 27.6173 17.1211 27.6173 16.1601ZM11.484 17.8419C11.484 16.9165 12.2403 16.1601 13.1658 16.1601C14.0913 16.1601 14.8477 16.9165 14.8477 17.8419C14.8477 18.7674 14.0913 19.5238 13.1658 19.5238C12.2403 19.5238 11.484 18.7674 11.484 17.8419ZM20.8543 22.2824C19.7064 23.4303 17.5084 23.5193 16.8677 23.5193C16.227 23.5193 14.0201 23.4303 12.881 22.2824C12.712 22.1133 12.712 21.8374 12.881 21.6683C13.0501 21.4993 13.326 21.4993 13.4951 21.6683C14.2159 22.3891 15.7642 22.6472 16.8677 22.6472C17.9711 22.6472 19.5195 22.3891 20.2403 21.6683C20.4093 21.4993 20.6852 21.4993 20.8543 21.6683C21.0234 21.8374 21.0234 22.1133 20.8543 22.2824ZM20.5606 19.5238C19.6351 19.5238 18.8788 18.7674 18.8788 17.8419C18.8788 16.9165 19.6351 16.1601 20.5606 16.1601C21.4861 16.1601 22.2425 16.9165 22.2425 17.8419C22.2425 18.7674 21.4861 19.5238 20.5606 19.5238Z\" fill=\"white\"></path></svg>					</a>\n			<h2>Address</h2>		\n			<p>Flat 601, C block, Siri Signature\napts, Kakatiya Hills Hyderabad 500081</p>		\n			<h2>Phone</h2>		\n			<p>+91 9133323459<br>\n+91 89778 12345 / +91 9030707212</p>		\n			<h2>Email</h2>		\n			<p>info@beyondcolor.com</p>', 'Footer', '', 'inherit', 'closed', 'closed', '', '188-revision-v1', '', '', '2023-10-02 09:21:18', '2023-10-02 09:21:18', '', 188, 'https://av-advertising.com/beyondc/?p=194', 0, 'revision', '', 0),
(198, 1, '2023-10-02 09:25:33', '2023-10-02 09:25:33', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>it’s time we inspire those who inspired us</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.1422 0C7.22573 0 0 7.22573 0 16.1422C0 22.9853 4.25357 28.8317 10.2602 31.181C10.1178 29.9085 9.99322 27.9419 10.3136 26.5448C10.6072 25.2811 12.2001 18.5182 12.2001 18.5182C12.2001 18.5182 11.7196 17.5482 11.7196 16.1244C11.7196 13.8819 13.0188 12.2001 14.6472 12.2001C16.0265 12.2001 16.6939 13.2323 16.6939 14.4693C16.6939 15.8485 15.813 17.9219 15.3502 19.853C14.9676 21.4636 16.16 22.7806 17.744 22.7806C20.6182 22.7806 22.8162 19.7551 22.8162 15.3947C22.8162 11.5238 20.0398 8.82749 16.0621 8.82749C11.4615 8.82749 8.7652 12.2713 8.7652 15.8308C8.7652 17.21 9.29912 18.705 9.95762 19.5148C10.0911 19.675 10.1 19.8174 10.0644 19.9775C9.94872 20.4848 9.66397 21.5882 9.61057 21.8107C9.54828 22.1043 9.37031 22.1666 9.06775 22.0242C7.04775 21.081 5.78414 18.1444 5.78414 15.7685C5.78414 10.6784 9.47709 5.99771 16.4537 5.99771C22.0509 5.99771 26.4024 9.98432 26.4024 15.3235C26.4024 20.6627 22.8963 25.3701 18.0287 25.3701C16.3914 25.3701 14.8519 24.5159 14.3358 23.5103C14.3358 23.5103 13.526 26.5893 13.3302 27.3545C12.9743 28.7605 11.9865 30.5136 11.328 31.5903C12.8408 32.053 14.4337 32.3111 16.1155 32.3111C25.032 32.3111 32.2577 25.0854 32.2577 16.1689C32.2844 7.22573 25.0587 0 16.1422 0Z\" fill=\"#BCBEC0\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"33\" viewBox=\"0 0 34 33\" fill=\"none\"><path d=\"M17.0693 32.2932C25.9795 32.2932 33.2026 25.0701 33.2026 16.1599C33.2026 7.24974 25.9795 0.0266113 17.0693 0.0266113C8.15916 0.0266113 0.936035 7.24974 0.936035 16.1599C0.936035 25.0701 8.15916 32.2932 17.0693 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M18.315 13.9531C18.5819 13.6595 18.7955 13.3569 19.0714 13.0988C19.9078 12.3069 20.8956 11.9153 22.0524 11.9242C22.6842 11.9242 23.316 11.9776 23.93 12.1556C25.3271 12.556 26.1458 13.526 26.5285 14.8964C26.8221 15.9197 26.8755 16.9787 26.8755 18.0287C26.8755 20.2534 26.8755 22.487 26.8755 24.7116C26.8755 24.9163 26.8132 24.9786 26.6085 24.9697C25.4606 24.9608 24.3127 24.9608 23.1648 24.9697C22.9601 24.9697 22.9156 24.9074 22.9156 24.7205C22.9156 22.6026 22.9156 20.4758 22.9156 18.358C22.9156 17.824 22.88 17.299 22.7287 16.7829C22.4529 15.8307 21.7766 15.3502 20.7799 15.3947C19.4184 15.4659 18.7065 16.1422 18.5374 17.5215C18.493 17.8507 18.4752 18.18 18.4752 18.5181C18.4752 20.5826 18.4752 22.6382 18.4752 24.7027C18.4752 24.9074 18.4218 24.9697 18.2171 24.9697C17.0603 24.9608 15.9034 24.9608 14.7466 24.9697C14.5597 24.9697 14.5063 24.9252 14.5063 24.7294C14.5063 20.6449 14.5063 16.5604 14.5063 12.4848C14.5063 12.2802 14.5686 12.2357 14.7644 12.2357C15.8589 12.2357 16.9624 12.2446 18.0569 12.2357C18.2616 12.2357 18.315 12.298 18.3061 12.4937C18.2972 12.9832 18.3061 13.4726 18.3061 13.962L18.315 13.9531Z\" fill=\"#FDFDFD\"></path><path d=\"M12.0235 18.625C12.0235 20.645 12.0235 22.665 12.0235 24.685C12.0235 24.9074 11.9701 24.9786 11.7387 24.9786C10.5908 24.9697 9.44288 24.9697 8.29495 24.9786C8.10808 24.9786 8.05469 24.9341 8.05469 24.7473C8.05469 20.6539 8.05469 16.5694 8.05469 12.476C8.05469 12.3069 8.09918 12.2446 8.27715 12.2446C9.44288 12.2446 10.6086 12.2535 11.7654 12.2446C11.9879 12.2446 12.0235 12.3336 12.0146 12.5205C12.0146 14.5583 12.0146 16.5961 12.0146 18.6339L12.0235 18.625Z\" fill=\"#FDFDFD\"></path><path d=\"M12.3441 8.18675C12.3441 9.45926 11.3118 10.4915 10.0482 10.4915C8.80238 10.4915 7.76123 9.45926 7.76123 8.21345C7.76123 6.94984 8.79348 5.90869 10.0571 5.90869C11.3118 5.90869 12.3441 6.94094 12.3441 8.18675Z\" fill=\"#FDFDFD\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"33\" viewBox=\"0 0 34 33\" fill=\"none\"><path d=\"M33.1293 16.1599C33.1293 7.25234 25.9125 0.0266113 17.0049 0.0266113C8.09731 0.0266113 0.871582 7.25234 0.871582 16.1599C0.871582 24.2132 6.77141 30.8872 14.4866 32.0975V20.8228H10.3932V16.1599H14.4866V12.6093C14.4866 8.56934 16.8981 6.33577 20.5821 6.33577C22.3441 6.33577 24.195 6.64723 24.195 6.64723V10.616H22.1572C20.155 10.616 19.5321 11.8619 19.5321 13.1344V16.1599H24.0081L23.2962 20.8228H19.541V32.0975C27.2562 30.8872 33.156 24.2132 33.156 16.1599H33.1293Z\" fill=\"#BCBEC0\"></path><path d=\"M23.2786 20.823L23.9905 16.1601H19.5144V13.1345C19.5144 11.862 20.1373 10.6162 22.1395 10.6162H24.1773V6.64739C24.1773 6.64739 22.3353 6.33594 20.5645 6.33594C16.8804 6.33594 14.4689 8.56951 14.4689 12.6095V16.1601H10.3755V20.823H14.4689V32.0976C15.2876 32.2222 16.1329 32.2934 16.9872 32.2934C17.8415 32.2934 18.6869 32.2222 19.5055 32.0976V20.823H23.2608H23.2786Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"33\" viewBox=\"0 0 34 33\" fill=\"none\"><path d=\"M16.9321 32.2932C25.8423 32.2932 33.0654 25.0701 33.0654 16.1599C33.0654 7.24974 25.8423 0.0266113 16.9321 0.0266113C8.02196 0.0266113 0.798828 7.24974 0.798828 16.1599C0.798828 25.0701 8.02196 32.2932 16.9321 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M16.9318 7.83093C19.6459 7.83093 19.9663 7.83983 21.0341 7.89322C22.0219 7.93771 22.5647 8.10679 22.9206 8.24027C23.3923 8.42714 23.7304 8.64071 24.0864 8.99666C24.4423 9.3526 24.6648 9.69075 24.8427 10.1624C24.9851 10.5183 25.1453 11.0612 25.1898 12.0489C25.2343 13.1167 25.2521 13.4371 25.2521 16.1512C25.2521 18.8653 25.2432 19.1856 25.1898 20.2535C25.1453 21.2412 24.9762 21.7841 24.8427 22.14C24.6559 22.6116 24.4423 22.9498 24.0864 23.3057C23.7304 23.6617 23.3923 23.8841 22.9206 24.0621C22.5647 24.2045 22.0219 24.3647 21.0341 24.4092C19.9663 24.4537 19.6459 24.4715 16.9318 24.4715C14.2177 24.4715 13.8974 24.4626 12.8295 24.4092C11.8418 24.3647 11.299 24.1956 10.943 24.0621C10.4714 23.8752 10.1332 23.6617 9.77729 23.3057C9.42134 22.9498 9.19887 22.6116 9.0209 22.14C8.87852 21.7841 8.71834 21.2412 8.67385 20.2535C8.62935 19.1856 8.61155 18.8653 8.61155 16.1512C8.61155 13.4371 8.62046 13.1167 8.67385 12.0489C8.71834 11.0612 8.88742 10.5183 9.0209 10.1624C9.20777 9.69075 9.42134 9.3526 9.77729 8.99666C10.1332 8.64071 10.4714 8.41824 10.943 8.24027C11.299 8.09789 11.8418 7.93771 12.8295 7.89322C13.8974 7.84873 14.2177 7.83093 16.9318 7.83093ZM16.9318 5.9978C14.1732 5.9978 13.8262 6.0067 12.7406 6.06009C11.6638 6.11349 10.9252 6.28256 10.2756 6.53172C9.60821 6.78979 9.03869 7.13683 8.47808 7.70635C7.91746 8.26697 7.57042 8.83648 7.30346 9.50388C7.05429 10.1535 6.87631 10.8921 6.83181 11.9688C6.77842 13.0545 6.76953 13.4015 6.76953 16.1601C6.76953 18.9187 6.77842 19.2657 6.83181 20.3514C6.88521 21.4281 7.05429 22.1667 7.30346 22.8163C7.56152 23.4837 7.90856 24.0532 8.47808 24.6138C9.03869 25.1745 9.60821 25.5215 10.2756 25.7885C10.9252 26.0376 11.6638 26.2156 12.7406 26.2601C13.8262 26.3135 14.1732 26.3224 16.9318 26.3224C19.6904 26.3224 20.0375 26.3135 21.1231 26.2601C22.1998 26.2067 22.9384 26.0376 23.588 25.7885C24.2554 25.5304 24.8249 25.1834 25.3856 24.6138C25.9462 24.0532 26.2932 23.4837 26.5602 22.8163C26.8094 22.1667 26.9873 21.4281 27.0318 20.3514C27.0852 19.2657 27.0941 18.9187 27.0941 16.1601C27.0941 13.4015 27.0852 13.0545 27.0318 11.9688C26.9784 10.8921 26.8094 10.1535 26.5602 9.50388C26.3021 8.83648 25.9551 8.26697 25.3856 7.70635C24.8249 7.14573 24.2554 6.79868 23.588 6.53172C22.9384 6.28256 22.1998 6.10459 21.1231 6.06009C20.0375 6.0067 19.6904 5.9978 16.9318 5.9978Z\" fill=\"white\"></path><path d=\"M16.9319 10.9453C14.0487 10.9453 11.7173 13.2768 11.7173 16.1599C11.7173 19.0431 14.0487 21.3746 16.9319 21.3746C19.8151 21.3746 22.1465 19.0431 22.1465 16.1599C22.1465 13.2768 19.8151 10.9453 16.9319 10.9453ZM16.9319 19.5503C15.0632 19.5503 13.5504 18.0376 13.5504 16.1688C13.5504 14.3001 15.0632 12.7873 16.9319 12.7873C18.8006 12.7873 20.3134 14.3001 20.3134 16.1688C20.3134 18.0376 18.8006 19.5503 16.9319 19.5503Z\" fill=\"white\"></path><path d=\"M22.3602 11.9597C23.0335 11.9597 23.5794 11.4139 23.5794 10.7406C23.5794 10.0673 23.0335 9.52148 22.3602 9.52148C21.6869 9.52148 21.1411 10.0673 21.1411 10.7406C21.1411 11.4139 21.6869 11.9597 22.3602 11.9597Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.8677 32.2932C25.7779 32.2932 33.001 25.0701 33.001 16.1599C33.001 7.24974 25.7779 0.0266113 16.8677 0.0266113C7.95751 0.0266113 0.734375 7.24974 0.734375 16.1599C0.734375 25.0701 7.95751 32.2932 16.8677 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M27.6173 16.1601C27.6173 14.8609 26.5672 13.8108 25.268 13.8108C24.6362 13.8108 24.0578 14.06 23.6395 14.4693C22.0289 13.3125 19.8131 12.5561 17.3482 12.476L18.416 7.43047L21.9132 8.17795C21.9577 9.06782 22.6874 9.77972 23.5862 9.77972C24.4849 9.77972 25.268 9.02333 25.268 8.09787C25.268 7.1724 24.5116 6.41602 23.5862 6.41602C22.9277 6.41602 22.3581 6.79866 22.0823 7.35038L18.1758 6.5228C18.069 6.4961 17.9533 6.5228 17.8554 6.58509C17.7575 6.64738 17.6952 6.74527 17.6774 6.85205L16.485 12.476C13.9845 12.5472 11.7331 13.2947 10.1047 14.4693C9.68643 14.06 9.10802 13.8108 8.47622 13.8108C7.17701 13.8108 6.12695 14.8609 6.12695 16.1601C6.12695 17.1122 6.69647 17.9398 7.51514 18.3046C7.47955 18.536 7.46175 18.7763 7.46175 19.0165C7.46175 22.6383 11.6708 25.566 16.8677 25.566C22.0645 25.566 26.2736 22.6294 26.2736 19.0165C26.2736 18.7763 26.2558 18.5449 26.2202 18.3135C27.0478 17.9487 27.6173 17.1211 27.6173 16.1601ZM11.484 17.8419C11.484 16.9165 12.2403 16.1601 13.1658 16.1601C14.0913 16.1601 14.8477 16.9165 14.8477 17.8419C14.8477 18.7674 14.0913 19.5238 13.1658 19.5238C12.2403 19.5238 11.484 18.7674 11.484 17.8419ZM20.8543 22.2824C19.7064 23.4303 17.5084 23.5193 16.8677 23.5193C16.227 23.5193 14.0201 23.4303 12.881 22.2824C12.712 22.1133 12.712 21.8374 12.881 21.6683C13.0501 21.4993 13.326 21.4993 13.4951 21.6683C14.2159 22.3891 15.7642 22.6472 16.8677 22.6472C17.9711 22.6472 19.5195 22.3891 20.2403 21.6683C20.4093 21.4993 20.6852 21.4993 20.8543 21.6683C21.0234 21.8374 21.0234 22.1133 20.8543 22.2824ZM20.5606 19.5238C19.6351 19.5238 18.8788 18.7674 18.8788 17.8419C18.8788 16.9165 19.6351 16.1601 20.5606 16.1601C21.4861 16.1601 22.2425 16.9165 22.2425 17.8419C22.2425 18.7674 21.4861 19.5238 20.5606 19.5238Z\" fill=\"white\"></path></svg>					</a>\n			<h2>Address</h2>		\n			<p>Flat 601, C block, Siri Signature\napts, Kakatiya Hills Hyderabad 500081</p>		\n			<h2>Phone</h2>		\n			<p>+91 9133323459<br>\n+91 89778 12345 / +91 9030707212</p>		\n			<h2>Email</h2>		\n			<p>info@beyondcolor.com</p>		\n		<p>2023 beyond Color. All rights reserved | Privacy Policy | Terms in use | Branding Website Design by theav</p>', 'Footer', '', 'inherit', 'closed', 'closed', '', '188-revision-v1', '', '', '2023-10-02 09:25:33', '2023-10-02 09:25:33', '', 188, 'https://av-advertising.com/beyondc/?p=198', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(199, 1, '2023-10-02 09:25:51', '2023-10-02 09:25:51', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>it’s time we inspire those who inspired us</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.1422 0C7.22573 0 0 7.22573 0 16.1422C0 22.9853 4.25357 28.8317 10.2602 31.181C10.1178 29.9085 9.99322 27.9419 10.3136 26.5448C10.6072 25.2811 12.2001 18.5182 12.2001 18.5182C12.2001 18.5182 11.7196 17.5482 11.7196 16.1244C11.7196 13.8819 13.0188 12.2001 14.6472 12.2001C16.0265 12.2001 16.6939 13.2323 16.6939 14.4693C16.6939 15.8485 15.813 17.9219 15.3502 19.853C14.9676 21.4636 16.16 22.7806 17.744 22.7806C20.6182 22.7806 22.8162 19.7551 22.8162 15.3947C22.8162 11.5238 20.0398 8.82749 16.0621 8.82749C11.4615 8.82749 8.7652 12.2713 8.7652 15.8308C8.7652 17.21 9.29912 18.705 9.95762 19.5148C10.0911 19.675 10.1 19.8174 10.0644 19.9775C9.94872 20.4848 9.66397 21.5882 9.61057 21.8107C9.54828 22.1043 9.37031 22.1666 9.06775 22.0242C7.04775 21.081 5.78414 18.1444 5.78414 15.7685C5.78414 10.6784 9.47709 5.99771 16.4537 5.99771C22.0509 5.99771 26.4024 9.98432 26.4024 15.3235C26.4024 20.6627 22.8963 25.3701 18.0287 25.3701C16.3914 25.3701 14.8519 24.5159 14.3358 23.5103C14.3358 23.5103 13.526 26.5893 13.3302 27.3545C12.9743 28.7605 11.9865 30.5136 11.328 31.5903C12.8408 32.053 14.4337 32.3111 16.1155 32.3111C25.032 32.3111 32.2577 25.0854 32.2577 16.1689C32.2844 7.22573 25.0587 0 16.1422 0Z\" fill=\"#BCBEC0\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"33\" viewBox=\"0 0 34 33\" fill=\"none\"><path d=\"M17.0693 32.2932C25.9795 32.2932 33.2026 25.0701 33.2026 16.1599C33.2026 7.24974 25.9795 0.0266113 17.0693 0.0266113C8.15916 0.0266113 0.936035 7.24974 0.936035 16.1599C0.936035 25.0701 8.15916 32.2932 17.0693 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M18.315 13.9531C18.5819 13.6595 18.7955 13.3569 19.0714 13.0988C19.9078 12.3069 20.8956 11.9153 22.0524 11.9242C22.6842 11.9242 23.316 11.9776 23.93 12.1556C25.3271 12.556 26.1458 13.526 26.5285 14.8964C26.8221 15.9197 26.8755 16.9787 26.8755 18.0287C26.8755 20.2534 26.8755 22.487 26.8755 24.7116C26.8755 24.9163 26.8132 24.9786 26.6085 24.9697C25.4606 24.9608 24.3127 24.9608 23.1648 24.9697C22.9601 24.9697 22.9156 24.9074 22.9156 24.7205C22.9156 22.6026 22.9156 20.4758 22.9156 18.358C22.9156 17.824 22.88 17.299 22.7287 16.7829C22.4529 15.8307 21.7766 15.3502 20.7799 15.3947C19.4184 15.4659 18.7065 16.1422 18.5374 17.5215C18.493 17.8507 18.4752 18.18 18.4752 18.5181C18.4752 20.5826 18.4752 22.6382 18.4752 24.7027C18.4752 24.9074 18.4218 24.9697 18.2171 24.9697C17.0603 24.9608 15.9034 24.9608 14.7466 24.9697C14.5597 24.9697 14.5063 24.9252 14.5063 24.7294C14.5063 20.6449 14.5063 16.5604 14.5063 12.4848C14.5063 12.2802 14.5686 12.2357 14.7644 12.2357C15.8589 12.2357 16.9624 12.2446 18.0569 12.2357C18.2616 12.2357 18.315 12.298 18.3061 12.4937C18.2972 12.9832 18.3061 13.4726 18.3061 13.962L18.315 13.9531Z\" fill=\"#FDFDFD\"></path><path d=\"M12.0235 18.625C12.0235 20.645 12.0235 22.665 12.0235 24.685C12.0235 24.9074 11.9701 24.9786 11.7387 24.9786C10.5908 24.9697 9.44288 24.9697 8.29495 24.9786C8.10808 24.9786 8.05469 24.9341 8.05469 24.7473C8.05469 20.6539 8.05469 16.5694 8.05469 12.476C8.05469 12.3069 8.09918 12.2446 8.27715 12.2446C9.44288 12.2446 10.6086 12.2535 11.7654 12.2446C11.9879 12.2446 12.0235 12.3336 12.0146 12.5205C12.0146 14.5583 12.0146 16.5961 12.0146 18.6339L12.0235 18.625Z\" fill=\"#FDFDFD\"></path><path d=\"M12.3441 8.18675C12.3441 9.45926 11.3118 10.4915 10.0482 10.4915C8.80238 10.4915 7.76123 9.45926 7.76123 8.21345C7.76123 6.94984 8.79348 5.90869 10.0571 5.90869C11.3118 5.90869 12.3441 6.94094 12.3441 8.18675Z\" fill=\"#FDFDFD\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"33\" viewBox=\"0 0 34 33\" fill=\"none\"><path d=\"M33.1293 16.1599C33.1293 7.25234 25.9125 0.0266113 17.0049 0.0266113C8.09731 0.0266113 0.871582 7.25234 0.871582 16.1599C0.871582 24.2132 6.77141 30.8872 14.4866 32.0975V20.8228H10.3932V16.1599H14.4866V12.6093C14.4866 8.56934 16.8981 6.33577 20.5821 6.33577C22.3441 6.33577 24.195 6.64723 24.195 6.64723V10.616H22.1572C20.155 10.616 19.5321 11.8619 19.5321 13.1344V16.1599H24.0081L23.2962 20.8228H19.541V32.0975C27.2562 30.8872 33.156 24.2132 33.156 16.1599H33.1293Z\" fill=\"#BCBEC0\"></path><path d=\"M23.2786 20.823L23.9905 16.1601H19.5144V13.1345C19.5144 11.862 20.1373 10.6162 22.1395 10.6162H24.1773V6.64739C24.1773 6.64739 22.3353 6.33594 20.5645 6.33594C16.8804 6.33594 14.4689 8.56951 14.4689 12.6095V16.1601H10.3755V20.823H14.4689V32.0976C15.2876 32.2222 16.1329 32.2934 16.9872 32.2934C17.8415 32.2934 18.6869 32.2222 19.5055 32.0976V20.823H23.2608H23.2786Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"33\" viewBox=\"0 0 34 33\" fill=\"none\"><path d=\"M16.9321 32.2932C25.8423 32.2932 33.0654 25.0701 33.0654 16.1599C33.0654 7.24974 25.8423 0.0266113 16.9321 0.0266113C8.02196 0.0266113 0.798828 7.24974 0.798828 16.1599C0.798828 25.0701 8.02196 32.2932 16.9321 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M16.9318 7.83093C19.6459 7.83093 19.9663 7.83983 21.0341 7.89322C22.0219 7.93771 22.5647 8.10679 22.9206 8.24027C23.3923 8.42714 23.7304 8.64071 24.0864 8.99666C24.4423 9.3526 24.6648 9.69075 24.8427 10.1624C24.9851 10.5183 25.1453 11.0612 25.1898 12.0489C25.2343 13.1167 25.2521 13.4371 25.2521 16.1512C25.2521 18.8653 25.2432 19.1856 25.1898 20.2535C25.1453 21.2412 24.9762 21.7841 24.8427 22.14C24.6559 22.6116 24.4423 22.9498 24.0864 23.3057C23.7304 23.6617 23.3923 23.8841 22.9206 24.0621C22.5647 24.2045 22.0219 24.3647 21.0341 24.4092C19.9663 24.4537 19.6459 24.4715 16.9318 24.4715C14.2177 24.4715 13.8974 24.4626 12.8295 24.4092C11.8418 24.3647 11.299 24.1956 10.943 24.0621C10.4714 23.8752 10.1332 23.6617 9.77729 23.3057C9.42134 22.9498 9.19887 22.6116 9.0209 22.14C8.87852 21.7841 8.71834 21.2412 8.67385 20.2535C8.62935 19.1856 8.61155 18.8653 8.61155 16.1512C8.61155 13.4371 8.62046 13.1167 8.67385 12.0489C8.71834 11.0612 8.88742 10.5183 9.0209 10.1624C9.20777 9.69075 9.42134 9.3526 9.77729 8.99666C10.1332 8.64071 10.4714 8.41824 10.943 8.24027C11.299 8.09789 11.8418 7.93771 12.8295 7.89322C13.8974 7.84873 14.2177 7.83093 16.9318 7.83093ZM16.9318 5.9978C14.1732 5.9978 13.8262 6.0067 12.7406 6.06009C11.6638 6.11349 10.9252 6.28256 10.2756 6.53172C9.60821 6.78979 9.03869 7.13683 8.47808 7.70635C7.91746 8.26697 7.57042 8.83648 7.30346 9.50388C7.05429 10.1535 6.87631 10.8921 6.83181 11.9688C6.77842 13.0545 6.76953 13.4015 6.76953 16.1601C6.76953 18.9187 6.77842 19.2657 6.83181 20.3514C6.88521 21.4281 7.05429 22.1667 7.30346 22.8163C7.56152 23.4837 7.90856 24.0532 8.47808 24.6138C9.03869 25.1745 9.60821 25.5215 10.2756 25.7885C10.9252 26.0376 11.6638 26.2156 12.7406 26.2601C13.8262 26.3135 14.1732 26.3224 16.9318 26.3224C19.6904 26.3224 20.0375 26.3135 21.1231 26.2601C22.1998 26.2067 22.9384 26.0376 23.588 25.7885C24.2554 25.5304 24.8249 25.1834 25.3856 24.6138C25.9462 24.0532 26.2932 23.4837 26.5602 22.8163C26.8094 22.1667 26.9873 21.4281 27.0318 20.3514C27.0852 19.2657 27.0941 18.9187 27.0941 16.1601C27.0941 13.4015 27.0852 13.0545 27.0318 11.9688C26.9784 10.8921 26.8094 10.1535 26.5602 9.50388C26.3021 8.83648 25.9551 8.26697 25.3856 7.70635C24.8249 7.14573 24.2554 6.79868 23.588 6.53172C22.9384 6.28256 22.1998 6.10459 21.1231 6.06009C20.0375 6.0067 19.6904 5.9978 16.9318 5.9978Z\" fill=\"white\"></path><path d=\"M16.9319 10.9453C14.0487 10.9453 11.7173 13.2768 11.7173 16.1599C11.7173 19.0431 14.0487 21.3746 16.9319 21.3746C19.8151 21.3746 22.1465 19.0431 22.1465 16.1599C22.1465 13.2768 19.8151 10.9453 16.9319 10.9453ZM16.9319 19.5503C15.0632 19.5503 13.5504 18.0376 13.5504 16.1688C13.5504 14.3001 15.0632 12.7873 16.9319 12.7873C18.8006 12.7873 20.3134 14.3001 20.3134 16.1688C20.3134 18.0376 18.8006 19.5503 16.9319 19.5503Z\" fill=\"white\"></path><path d=\"M22.3602 11.9597C23.0335 11.9597 23.5794 11.4139 23.5794 10.7406C23.5794 10.0673 23.0335 9.52148 22.3602 9.52148C21.6869 9.52148 21.1411 10.0673 21.1411 10.7406C21.1411 11.4139 21.6869 11.9597 22.3602 11.9597Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.8677 32.2932C25.7779 32.2932 33.001 25.0701 33.001 16.1599C33.001 7.24974 25.7779 0.0266113 16.8677 0.0266113C7.95751 0.0266113 0.734375 7.24974 0.734375 16.1599C0.734375 25.0701 7.95751 32.2932 16.8677 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M27.6173 16.1601C27.6173 14.8609 26.5672 13.8108 25.268 13.8108C24.6362 13.8108 24.0578 14.06 23.6395 14.4693C22.0289 13.3125 19.8131 12.5561 17.3482 12.476L18.416 7.43047L21.9132 8.17795C21.9577 9.06782 22.6874 9.77972 23.5862 9.77972C24.4849 9.77972 25.268 9.02333 25.268 8.09787C25.268 7.1724 24.5116 6.41602 23.5862 6.41602C22.9277 6.41602 22.3581 6.79866 22.0823 7.35038L18.1758 6.5228C18.069 6.4961 17.9533 6.5228 17.8554 6.58509C17.7575 6.64738 17.6952 6.74527 17.6774 6.85205L16.485 12.476C13.9845 12.5472 11.7331 13.2947 10.1047 14.4693C9.68643 14.06 9.10802 13.8108 8.47622 13.8108C7.17701 13.8108 6.12695 14.8609 6.12695 16.1601C6.12695 17.1122 6.69647 17.9398 7.51514 18.3046C7.47955 18.536 7.46175 18.7763 7.46175 19.0165C7.46175 22.6383 11.6708 25.566 16.8677 25.566C22.0645 25.566 26.2736 22.6294 26.2736 19.0165C26.2736 18.7763 26.2558 18.5449 26.2202 18.3135C27.0478 17.9487 27.6173 17.1211 27.6173 16.1601ZM11.484 17.8419C11.484 16.9165 12.2403 16.1601 13.1658 16.1601C14.0913 16.1601 14.8477 16.9165 14.8477 17.8419C14.8477 18.7674 14.0913 19.5238 13.1658 19.5238C12.2403 19.5238 11.484 18.7674 11.484 17.8419ZM20.8543 22.2824C19.7064 23.4303 17.5084 23.5193 16.8677 23.5193C16.227 23.5193 14.0201 23.4303 12.881 22.2824C12.712 22.1133 12.712 21.8374 12.881 21.6683C13.0501 21.4993 13.326 21.4993 13.4951 21.6683C14.2159 22.3891 15.7642 22.6472 16.8677 22.6472C17.9711 22.6472 19.5195 22.3891 20.2403 21.6683C20.4093 21.4993 20.6852 21.4993 20.8543 21.6683C21.0234 21.8374 21.0234 22.1133 20.8543 22.2824ZM20.5606 19.5238C19.6351 19.5238 18.8788 18.7674 18.8788 17.8419C18.8788 16.9165 19.6351 16.1601 20.5606 16.1601C21.4861 16.1601 22.2425 16.9165 22.2425 17.8419C22.2425 18.7674 21.4861 19.5238 20.5606 19.5238Z\" fill=\"white\"></path></svg>					</a>\n			<h2>Address</h2>		\n			<p>Flat 601, C block, Siri Signature\napts, Kakatiya Hills Hyderabad 500081</p>		\n			<h2>Phone</h2>		\n			<p>+91 9133323459<br>\n+91 89778 12345 / +91 9030707212</p>		\n			<h2>Email</h2>		\n			<p>info@beyondcolor.com</p>		\n		<p>2023 beyond Color. All rights reserved | Privacy Policy | Terms in use | Branding Website Design by theav</p>', 'Footer', '', 'inherit', 'closed', 'closed', '', '188-revision-v1', '', '', '2023-10-02 09:25:51', '2023-10-02 09:25:51', '', 188, 'https://av-advertising.com/beyondc/?p=199', 0, 'revision', '', 0),
(200, 1, '2023-10-02 09:26:22', '2023-10-02 09:26:22', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>it’s time we inspire those who inspired us</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.1422 0C7.22573 0 0 7.22573 0 16.1422C0 22.9853 4.25357 28.8317 10.2602 31.181C10.1178 29.9085 9.99322 27.9419 10.3136 26.5448C10.6072 25.2811 12.2001 18.5182 12.2001 18.5182C12.2001 18.5182 11.7196 17.5482 11.7196 16.1244C11.7196 13.8819 13.0188 12.2001 14.6472 12.2001C16.0265 12.2001 16.6939 13.2323 16.6939 14.4693C16.6939 15.8485 15.813 17.9219 15.3502 19.853C14.9676 21.4636 16.16 22.7806 17.744 22.7806C20.6182 22.7806 22.8162 19.7551 22.8162 15.3947C22.8162 11.5238 20.0398 8.82749 16.0621 8.82749C11.4615 8.82749 8.7652 12.2713 8.7652 15.8308C8.7652 17.21 9.29912 18.705 9.95762 19.5148C10.0911 19.675 10.1 19.8174 10.0644 19.9775C9.94872 20.4848 9.66397 21.5882 9.61057 21.8107C9.54828 22.1043 9.37031 22.1666 9.06775 22.0242C7.04775 21.081 5.78414 18.1444 5.78414 15.7685C5.78414 10.6784 9.47709 5.99771 16.4537 5.99771C22.0509 5.99771 26.4024 9.98432 26.4024 15.3235C26.4024 20.6627 22.8963 25.3701 18.0287 25.3701C16.3914 25.3701 14.8519 24.5159 14.3358 23.5103C14.3358 23.5103 13.526 26.5893 13.3302 27.3545C12.9743 28.7605 11.9865 30.5136 11.328 31.5903C12.8408 32.053 14.4337 32.3111 16.1155 32.3111C25.032 32.3111 32.2577 25.0854 32.2577 16.1689C32.2844 7.22573 25.0587 0 16.1422 0Z\" fill=\"#BCBEC0\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"33\" viewBox=\"0 0 34 33\" fill=\"none\"><path d=\"M17.0693 32.2932C25.9795 32.2932 33.2026 25.0701 33.2026 16.1599C33.2026 7.24974 25.9795 0.0266113 17.0693 0.0266113C8.15916 0.0266113 0.936035 7.24974 0.936035 16.1599C0.936035 25.0701 8.15916 32.2932 17.0693 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M18.315 13.9531C18.5819 13.6595 18.7955 13.3569 19.0714 13.0988C19.9078 12.3069 20.8956 11.9153 22.0524 11.9242C22.6842 11.9242 23.316 11.9776 23.93 12.1556C25.3271 12.556 26.1458 13.526 26.5285 14.8964C26.8221 15.9197 26.8755 16.9787 26.8755 18.0287C26.8755 20.2534 26.8755 22.487 26.8755 24.7116C26.8755 24.9163 26.8132 24.9786 26.6085 24.9697C25.4606 24.9608 24.3127 24.9608 23.1648 24.9697C22.9601 24.9697 22.9156 24.9074 22.9156 24.7205C22.9156 22.6026 22.9156 20.4758 22.9156 18.358C22.9156 17.824 22.88 17.299 22.7287 16.7829C22.4529 15.8307 21.7766 15.3502 20.7799 15.3947C19.4184 15.4659 18.7065 16.1422 18.5374 17.5215C18.493 17.8507 18.4752 18.18 18.4752 18.5181C18.4752 20.5826 18.4752 22.6382 18.4752 24.7027C18.4752 24.9074 18.4218 24.9697 18.2171 24.9697C17.0603 24.9608 15.9034 24.9608 14.7466 24.9697C14.5597 24.9697 14.5063 24.9252 14.5063 24.7294C14.5063 20.6449 14.5063 16.5604 14.5063 12.4848C14.5063 12.2802 14.5686 12.2357 14.7644 12.2357C15.8589 12.2357 16.9624 12.2446 18.0569 12.2357C18.2616 12.2357 18.315 12.298 18.3061 12.4937C18.2972 12.9832 18.3061 13.4726 18.3061 13.962L18.315 13.9531Z\" fill=\"#FDFDFD\"></path><path d=\"M12.0235 18.625C12.0235 20.645 12.0235 22.665 12.0235 24.685C12.0235 24.9074 11.9701 24.9786 11.7387 24.9786C10.5908 24.9697 9.44288 24.9697 8.29495 24.9786C8.10808 24.9786 8.05469 24.9341 8.05469 24.7473C8.05469 20.6539 8.05469 16.5694 8.05469 12.476C8.05469 12.3069 8.09918 12.2446 8.27715 12.2446C9.44288 12.2446 10.6086 12.2535 11.7654 12.2446C11.9879 12.2446 12.0235 12.3336 12.0146 12.5205C12.0146 14.5583 12.0146 16.5961 12.0146 18.6339L12.0235 18.625Z\" fill=\"#FDFDFD\"></path><path d=\"M12.3441 8.18675C12.3441 9.45926 11.3118 10.4915 10.0482 10.4915C8.80238 10.4915 7.76123 9.45926 7.76123 8.21345C7.76123 6.94984 8.79348 5.90869 10.0571 5.90869C11.3118 5.90869 12.3441 6.94094 12.3441 8.18675Z\" fill=\"#FDFDFD\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"33\" viewBox=\"0 0 34 33\" fill=\"none\"><path d=\"M33.1293 16.1599C33.1293 7.25234 25.9125 0.0266113 17.0049 0.0266113C8.09731 0.0266113 0.871582 7.25234 0.871582 16.1599C0.871582 24.2132 6.77141 30.8872 14.4866 32.0975V20.8228H10.3932V16.1599H14.4866V12.6093C14.4866 8.56934 16.8981 6.33577 20.5821 6.33577C22.3441 6.33577 24.195 6.64723 24.195 6.64723V10.616H22.1572C20.155 10.616 19.5321 11.8619 19.5321 13.1344V16.1599H24.0081L23.2962 20.8228H19.541V32.0975C27.2562 30.8872 33.156 24.2132 33.156 16.1599H33.1293Z\" fill=\"#BCBEC0\"></path><path d=\"M23.2786 20.823L23.9905 16.1601H19.5144V13.1345C19.5144 11.862 20.1373 10.6162 22.1395 10.6162H24.1773V6.64739C24.1773 6.64739 22.3353 6.33594 20.5645 6.33594C16.8804 6.33594 14.4689 8.56951 14.4689 12.6095V16.1601H10.3755V20.823H14.4689V32.0976C15.2876 32.2222 16.1329 32.2934 16.9872 32.2934C17.8415 32.2934 18.6869 32.2222 19.5055 32.0976V20.823H23.2608H23.2786Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"33\" viewBox=\"0 0 34 33\" fill=\"none\"><path d=\"M16.9321 32.2932C25.8423 32.2932 33.0654 25.0701 33.0654 16.1599C33.0654 7.24974 25.8423 0.0266113 16.9321 0.0266113C8.02196 0.0266113 0.798828 7.24974 0.798828 16.1599C0.798828 25.0701 8.02196 32.2932 16.9321 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M16.9318 7.83093C19.6459 7.83093 19.9663 7.83983 21.0341 7.89322C22.0219 7.93771 22.5647 8.10679 22.9206 8.24027C23.3923 8.42714 23.7304 8.64071 24.0864 8.99666C24.4423 9.3526 24.6648 9.69075 24.8427 10.1624C24.9851 10.5183 25.1453 11.0612 25.1898 12.0489C25.2343 13.1167 25.2521 13.4371 25.2521 16.1512C25.2521 18.8653 25.2432 19.1856 25.1898 20.2535C25.1453 21.2412 24.9762 21.7841 24.8427 22.14C24.6559 22.6116 24.4423 22.9498 24.0864 23.3057C23.7304 23.6617 23.3923 23.8841 22.9206 24.0621C22.5647 24.2045 22.0219 24.3647 21.0341 24.4092C19.9663 24.4537 19.6459 24.4715 16.9318 24.4715C14.2177 24.4715 13.8974 24.4626 12.8295 24.4092C11.8418 24.3647 11.299 24.1956 10.943 24.0621C10.4714 23.8752 10.1332 23.6617 9.77729 23.3057C9.42134 22.9498 9.19887 22.6116 9.0209 22.14C8.87852 21.7841 8.71834 21.2412 8.67385 20.2535C8.62935 19.1856 8.61155 18.8653 8.61155 16.1512C8.61155 13.4371 8.62046 13.1167 8.67385 12.0489C8.71834 11.0612 8.88742 10.5183 9.0209 10.1624C9.20777 9.69075 9.42134 9.3526 9.77729 8.99666C10.1332 8.64071 10.4714 8.41824 10.943 8.24027C11.299 8.09789 11.8418 7.93771 12.8295 7.89322C13.8974 7.84873 14.2177 7.83093 16.9318 7.83093ZM16.9318 5.9978C14.1732 5.9978 13.8262 6.0067 12.7406 6.06009C11.6638 6.11349 10.9252 6.28256 10.2756 6.53172C9.60821 6.78979 9.03869 7.13683 8.47808 7.70635C7.91746 8.26697 7.57042 8.83648 7.30346 9.50388C7.05429 10.1535 6.87631 10.8921 6.83181 11.9688C6.77842 13.0545 6.76953 13.4015 6.76953 16.1601C6.76953 18.9187 6.77842 19.2657 6.83181 20.3514C6.88521 21.4281 7.05429 22.1667 7.30346 22.8163C7.56152 23.4837 7.90856 24.0532 8.47808 24.6138C9.03869 25.1745 9.60821 25.5215 10.2756 25.7885C10.9252 26.0376 11.6638 26.2156 12.7406 26.2601C13.8262 26.3135 14.1732 26.3224 16.9318 26.3224C19.6904 26.3224 20.0375 26.3135 21.1231 26.2601C22.1998 26.2067 22.9384 26.0376 23.588 25.7885C24.2554 25.5304 24.8249 25.1834 25.3856 24.6138C25.9462 24.0532 26.2932 23.4837 26.5602 22.8163C26.8094 22.1667 26.9873 21.4281 27.0318 20.3514C27.0852 19.2657 27.0941 18.9187 27.0941 16.1601C27.0941 13.4015 27.0852 13.0545 27.0318 11.9688C26.9784 10.8921 26.8094 10.1535 26.5602 9.50388C26.3021 8.83648 25.9551 8.26697 25.3856 7.70635C24.8249 7.14573 24.2554 6.79868 23.588 6.53172C22.9384 6.28256 22.1998 6.10459 21.1231 6.06009C20.0375 6.0067 19.6904 5.9978 16.9318 5.9978Z\" fill=\"white\"></path><path d=\"M16.9319 10.9453C14.0487 10.9453 11.7173 13.2768 11.7173 16.1599C11.7173 19.0431 14.0487 21.3746 16.9319 21.3746C19.8151 21.3746 22.1465 19.0431 22.1465 16.1599C22.1465 13.2768 19.8151 10.9453 16.9319 10.9453ZM16.9319 19.5503C15.0632 19.5503 13.5504 18.0376 13.5504 16.1688C13.5504 14.3001 15.0632 12.7873 16.9319 12.7873C18.8006 12.7873 20.3134 14.3001 20.3134 16.1688C20.3134 18.0376 18.8006 19.5503 16.9319 19.5503Z\" fill=\"white\"></path><path d=\"M22.3602 11.9597C23.0335 11.9597 23.5794 11.4139 23.5794 10.7406C23.5794 10.0673 23.0335 9.52148 22.3602 9.52148C21.6869 9.52148 21.1411 10.0673 21.1411 10.7406C21.1411 11.4139 21.6869 11.9597 22.3602 11.9597Z\" fill=\"white\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\"><path d=\"M16.8677 32.2932C25.7779 32.2932 33.001 25.0701 33.001 16.1599C33.001 7.24974 25.7779 0.0266113 16.8677 0.0266113C7.95751 0.0266113 0.734375 7.24974 0.734375 16.1599C0.734375 25.0701 7.95751 32.2932 16.8677 32.2932Z\" fill=\"#BCBEC0\"></path><path d=\"M27.6173 16.1601C27.6173 14.8609 26.5672 13.8108 25.268 13.8108C24.6362 13.8108 24.0578 14.06 23.6395 14.4693C22.0289 13.3125 19.8131 12.5561 17.3482 12.476L18.416 7.43047L21.9132 8.17795C21.9577 9.06782 22.6874 9.77972 23.5862 9.77972C24.4849 9.77972 25.268 9.02333 25.268 8.09787C25.268 7.1724 24.5116 6.41602 23.5862 6.41602C22.9277 6.41602 22.3581 6.79866 22.0823 7.35038L18.1758 6.5228C18.069 6.4961 17.9533 6.5228 17.8554 6.58509C17.7575 6.64738 17.6952 6.74527 17.6774 6.85205L16.485 12.476C13.9845 12.5472 11.7331 13.2947 10.1047 14.4693C9.68643 14.06 9.10802 13.8108 8.47622 13.8108C7.17701 13.8108 6.12695 14.8609 6.12695 16.1601C6.12695 17.1122 6.69647 17.9398 7.51514 18.3046C7.47955 18.536 7.46175 18.7763 7.46175 19.0165C7.46175 22.6383 11.6708 25.566 16.8677 25.566C22.0645 25.566 26.2736 22.6294 26.2736 19.0165C26.2736 18.7763 26.2558 18.5449 26.2202 18.3135C27.0478 17.9487 27.6173 17.1211 27.6173 16.1601ZM11.484 17.8419C11.484 16.9165 12.2403 16.1601 13.1658 16.1601C14.0913 16.1601 14.8477 16.9165 14.8477 17.8419C14.8477 18.7674 14.0913 19.5238 13.1658 19.5238C12.2403 19.5238 11.484 18.7674 11.484 17.8419ZM20.8543 22.2824C19.7064 23.4303 17.5084 23.5193 16.8677 23.5193C16.227 23.5193 14.0201 23.4303 12.881 22.2824C12.712 22.1133 12.712 21.8374 12.881 21.6683C13.0501 21.4993 13.326 21.4993 13.4951 21.6683C14.2159 22.3891 15.7642 22.6472 16.8677 22.6472C17.9711 22.6472 19.5195 22.3891 20.2403 21.6683C20.4093 21.4993 20.6852 21.4993 20.8543 21.6683C21.0234 21.8374 21.0234 22.1133 20.8543 22.2824ZM20.5606 19.5238C19.6351 19.5238 18.8788 18.7674 18.8788 17.8419C18.8788 16.9165 19.6351 16.1601 20.5606 16.1601C21.4861 16.1601 22.2425 16.9165 22.2425 17.8419C22.2425 18.7674 21.4861 19.5238 20.5606 19.5238Z\" fill=\"white\"></path></svg>					</a>\n			<h2>Address</h2>		\n			<p>Flat 601, C block, Siri Signature\napts, Kakatiya Hills Hyderabad 500081</p>		\n			<h2>Phone</h2>		\n			<p>+91 9133323459<br>\n+91 89778 12345 / +91 9030707212</p>		\n			<h2>Email</h2>		\n			<p>info@beyondcolor.com</p>		\n		<p>2023 beyond Color. All rights reserved | Privacy Policy | Terms in use | Branding Website Design by theav</p>', 'Footer', '', 'inherit', 'closed', 'closed', '', '188-revision-v1', '', '', '2023-10-02 09:26:22', '2023-10-02 09:26:22', '', 188, 'https://av-advertising.com/beyondc/?p=200', 0, 'revision', '', 0),
(201, 1, '2023-10-02 09:26:36', '2023-10-02 09:26:36', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 09:26:36', '2023-10-02 09:26:36', '', 13, 'https://av-advertising.com/beyondc/?p=201', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(202, 1, '2023-10-02 09:26:37', '2023-10-02 09:26:37', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 09:26:37', '2023-10-02 09:26:37', '', 13, 'https://av-advertising.com/beyondc/?p=202', 0, 'revision', '', 0),
(203, 1, '2023-10-02 09:26:37', '2023-10-02 09:26:37', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 09:26:37', '2023-10-02 09:26:37', '', 13, 'https://av-advertising.com/beyondc/?p=203', 0, 'revision', '', 0),
(204, 1, '2023-10-02 09:26:56', '2023-10-02 09:26:56', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 09:26:56', '2023-10-02 09:26:56', '', 13, 'https://av-advertising.com/beyondc/?p=204', 0, 'revision', '', 0),
(205, 1, '2023-10-02 09:26:56', '2023-10-02 09:26:56', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 09:26:56', '2023-10-02 09:26:56', '', 13, 'https://av-advertising.com/beyondc/?p=205', 0, 'revision', '', 0),
(206, 1, '2023-10-02 09:26:56', '2023-10-02 09:26:56', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-02 09:26:56', '2023-10-02 09:26:56', '', 13, 'https://av-advertising.com/beyondc/?p=206', 0, 'revision', '', 0),
(209, 1, '2023-10-02 10:17:03', '2023-10-02 10:17:03', '', 'beyond', '', 'inherit', 'open', 'closed', '', 'beyond', '', '', '2023-10-02 10:17:03', '2023-10-02 10:17:03', '', 52, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg', 0, 'attachment', 'image/jpeg', 0),
(210, 1, '2023-10-02 10:17:39', '2023-10-02 10:17:39', '', 'beyond2', '', 'inherit', 'open', 'closed', '', 'beyond2', '', '', '2023-10-02 10:17:39', '2023-10-02 10:17:39', '', 52, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg', 0, 'attachment', 'image/jpeg', 0),
(211, 1, '2023-10-02 10:18:54', '2023-10-02 10:18:54', '', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-02 10:18:54', '2023-10-02 10:18:54', '', 52, 'https://av-advertising.com/beyondc/?p=211', 0, 'revision', '', 0),
(212, 1, '2023-10-02 10:18:54', '2023-10-02 10:18:54', '', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-02 10:18:54', '2023-10-02 10:18:54', '', 52, 'https://av-advertising.com/beyondc/?p=212', 0, 'revision', '', 0),
(213, 1, '2023-10-02 10:18:54', '2023-10-02 10:18:54', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-02 10:18:54', '2023-10-02 10:18:54', '', 52, 'https://av-advertising.com/beyondc/?p=213', 0, 'revision', '', 0),
(215, 1, '2023-10-02 10:36:55', '2023-10-02 10:36:55', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>													<a href=\"/Home\">\n							<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />								</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2023-10-02 10:36:55', '2023-10-02 10:36:55', '', 25, 'https://av-advertising.com/beyondc/?p=215', 0, 'revision', '', 0),
(216, 1, '2023-10-02 10:44:22', '2023-10-02 10:44:22', '', 'beyond4', '', 'inherit', 'open', 'closed', '', 'beyond4', '', '', '2023-10-02 10:44:22', '2023-10-02 10:44:22', '', 52, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg', 0, 'attachment', 'image/jpeg', 0),
(217, 1, '2023-10-02 10:44:25', '2023-10-02 10:44:25', '', 'beyond-3', '', 'inherit', 'open', 'closed', '', 'beyond-3', '', '', '2023-10-02 10:44:25', '2023-10-02 10:44:25', '', 52, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(218, 1, '2023-10-02 10:53:22', '2023-10-02 10:53:22', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-02 10:53:22', '2023-10-02 10:53:22', '', 52, 'https://av-advertising.com/beyondc/?p=218', 0, 'revision', '', 0),
(219, 1, '2023-10-02 10:53:22', '2023-10-02 10:53:22', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-02 10:53:22', '2023-10-02 10:53:22', '', 52, 'https://av-advertising.com/beyondc/?p=219', 0, 'revision', '', 0),
(220, 1, '2023-10-02 10:53:22', '2023-10-02 10:53:22', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-02 10:53:22', '2023-10-02 10:53:22', '', 52, 'https://av-advertising.com/beyondc/?p=220', 0, 'revision', '', 0),
(221, 1, '2023-10-02 11:19:34', '2023-10-02 11:19:34', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-02 11:19:34', '2023-10-02 11:19:34', '', 52, 'https://av-advertising.com/beyondc/?p=221', 0, 'revision', '', 0),
(222, 1, '2023-10-02 11:19:34', '2023-10-02 11:19:34', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-02 11:19:34', '2023-10-02 11:19:34', '', 52, 'https://av-advertising.com/beyondc/?p=222', 0, 'revision', '', 0),
(223, 1, '2023-10-02 11:19:35', '2023-10-02 11:19:35', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-02 11:19:35', '2023-10-02 11:19:35', '', 52, 'https://av-advertising.com/beyondc/?p=223', 0, 'revision', '', 0),
(224, 1, '2023-10-02 11:24:45', '2023-10-02 11:24:45', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-02 11:24:45', '2023-10-02 11:24:45', '', 52, 'https://av-advertising.com/beyondc/?p=224', 0, 'revision', '', 0),
(225, 1, '2023-10-02 11:24:45', '2023-10-02 11:24:45', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-02 11:24:45', '2023-10-02 11:24:45', '', 52, 'https://av-advertising.com/beyondc/?p=225', 0, 'revision', '', 0),
(226, 1, '2023-10-02 11:24:45', '2023-10-02 11:24:45', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-02 11:24:45', '2023-10-02 11:24:45', '', 52, 'https://av-advertising.com/beyondc/?p=226', 0, 'revision', '', 0),
(227, 1, '2023-10-02 11:25:07', '2023-10-02 11:25:07', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-02 11:25:07', '2023-10-02 11:25:07', '', 52, 'https://av-advertising.com/beyondc/?p=227', 0, 'revision', '', 0),
(228, 1, '2023-10-02 11:25:07', '2023-10-02 11:25:07', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-02 11:25:07', '2023-10-02 11:25:07', '', 52, 'https://av-advertising.com/beyondc/?p=228', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(229, 1, '2023-10-02 11:25:07', '2023-10-02 11:25:07', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-02 11:25:07', '2023-10-02 11:25:07', '', 52, 'https://av-advertising.com/beyondc/?p=229', 0, 'revision', '', 0),
(230, 1, '2023-10-02 11:25:29', '2023-10-02 11:25:29', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-02 11:25:29', '2023-10-02 11:25:29', '', 52, 'https://av-advertising.com/beyondc/?p=230', 0, 'revision', '', 0),
(231, 1, '2023-10-02 11:25:29', '2023-10-02 11:25:29', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-02 11:25:29', '2023-10-02 11:25:29', '', 52, 'https://av-advertising.com/beyondc/?p=231', 0, 'revision', '', 0),
(232, 1, '2023-10-02 11:25:29', '2023-10-02 11:25:29', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-02 11:25:29', '2023-10-02 11:25:29', '', 52, 'https://av-advertising.com/beyondc/?p=232', 0, 'revision', '', 0),
(233, 1, '2023-10-03 09:33:18', '2023-10-03 09:33:18', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:33:18', '2023-10-03 09:33:18', '', 52, 'https://av-advertising.com/beyondc/?p=233', 0, 'revision', '', 0),
(234, 1, '2023-10-03 09:33:18', '2023-10-03 09:33:18', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:33:18', '2023-10-03 09:33:18', '', 52, 'https://av-advertising.com/beyondc/?p=234', 0, 'revision', '', 0),
(235, 1, '2023-10-03 09:33:18', '2023-10-03 09:33:18', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:33:18', '2023-10-03 09:33:18', '', 52, 'https://av-advertising.com/beyondc/?p=235', 0, 'revision', '', 0),
(236, 1, '2023-10-03 09:34:15', '2023-10-03 09:34:15', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:34:15', '2023-10-03 09:34:15', '', 52, 'https://av-advertising.com/beyondc/?p=236', 0, 'revision', '', 0),
(237, 1, '2023-10-03 09:34:15', '2023-10-03 09:34:15', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:34:15', '2023-10-03 09:34:15', '', 52, 'https://av-advertising.com/beyondc/?p=237', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(238, 1, '2023-10-03 09:34:15', '2023-10-03 09:34:15', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:34:15', '2023-10-03 09:34:15', '', 52, 'https://av-advertising.com/beyondc/?p=238', 0, 'revision', '', 0),
(239, 1, '2023-10-03 09:34:45', '2023-10-03 09:34:45', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:34:45', '2023-10-03 09:34:45', '', 52, 'https://av-advertising.com/beyondc/?p=239', 0, 'revision', '', 0),
(240, 1, '2023-10-03 09:34:45', '2023-10-03 09:34:45', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:34:45', '2023-10-03 09:34:45', '', 52, 'https://av-advertising.com/beyondc/?p=240', 0, 'revision', '', 0),
(241, 1, '2023-10-03 09:34:45', '2023-10-03 09:34:45', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:34:45', '2023-10-03 09:34:45', '', 52, 'https://av-advertising.com/beyondc/?p=241', 0, 'revision', '', 0),
(242, 1, '2023-10-03 09:35:38', '2023-10-03 09:35:38', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:35:38', '2023-10-03 09:35:38', '', 52, 'https://av-advertising.com/beyondc/?p=242', 0, 'revision', '', 0),
(243, 1, '2023-10-03 09:35:38', '2023-10-03 09:35:38', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:35:38', '2023-10-03 09:35:38', '', 52, 'https://av-advertising.com/beyondc/?p=243', 0, 'revision', '', 0),
(244, 1, '2023-10-03 09:35:38', '2023-10-03 09:35:38', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:35:38', '2023-10-03 09:35:38', '', 52, 'https://av-advertising.com/beyondc/?p=244', 0, 'revision', '', 0),
(245, 1, '2023-10-03 09:35:47', '2023-10-03 09:35:47', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:35:47', '2023-10-03 09:35:47', '', 52, 'https://av-advertising.com/beyondc/?p=245', 0, 'revision', '', 0),
(246, 1, '2023-10-03 09:35:47', '2023-10-03 09:35:47', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:35:47', '2023-10-03 09:35:47', '', 52, 'https://av-advertising.com/beyondc/?p=246', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(247, 1, '2023-10-03 09:35:47', '2023-10-03 09:35:47', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:35:47', '2023-10-03 09:35:47', '', 52, 'https://av-advertising.com/beyondc/?p=247', 0, 'revision', '', 0),
(248, 1, '2023-10-03 09:35:59', '2023-10-03 09:35:59', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:35:59', '2023-10-03 09:35:59', '', 52, 'https://av-advertising.com/beyondc/?p=248', 0, 'revision', '', 0),
(249, 1, '2023-10-03 09:35:59', '2023-10-03 09:35:59', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:35:59', '2023-10-03 09:35:59', '', 52, 'https://av-advertising.com/beyondc/?p=249', 0, 'revision', '', 0),
(250, 1, '2023-10-03 09:35:59', '2023-10-03 09:35:59', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:35:59', '2023-10-03 09:35:59', '', 52, 'https://av-advertising.com/beyondc/?p=250', 0, 'revision', '', 0),
(251, 1, '2023-10-03 09:36:32', '2023-10-03 09:36:32', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:36:32', '2023-10-03 09:36:32', '', 52, 'https://av-advertising.com/beyondc/?p=251', 0, 'revision', '', 0),
(252, 1, '2023-10-03 09:36:32', '2023-10-03 09:36:32', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:36:32', '2023-10-03 09:36:32', '', 52, 'https://av-advertising.com/beyondc/?p=252', 0, 'revision', '', 0),
(253, 1, '2023-10-03 09:36:32', '2023-10-03 09:36:32', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:36:32', '2023-10-03 09:36:32', '', 52, 'https://av-advertising.com/beyondc/?p=253', 0, 'revision', '', 0),
(254, 1, '2023-10-03 09:36:42', '2023-10-03 09:36:42', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:36:42', '2023-10-03 09:36:42', '', 52, 'https://av-advertising.com/beyondc/?p=254', 0, 'revision', '', 0),
(255, 1, '2023-10-03 09:36:42', '2023-10-03 09:36:42', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:36:42', '2023-10-03 09:36:42', '', 52, 'https://av-advertising.com/beyondc/?p=255', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(256, 1, '2023-10-03 09:36:42', '2023-10-03 09:36:42', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:36:42', '2023-10-03 09:36:42', '', 52, 'https://av-advertising.com/beyondc/?p=256', 0, 'revision', '', 0),
(257, 1, '2023-10-03 09:36:58', '2023-10-03 09:36:58', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:36:58', '2023-10-03 09:36:58', '', 52, 'https://av-advertising.com/beyondc/?p=257', 0, 'revision', '', 0),
(258, 1, '2023-10-03 09:36:58', '2023-10-03 09:36:58', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:36:58', '2023-10-03 09:36:58', '', 52, 'https://av-advertising.com/beyondc/?p=258', 0, 'revision', '', 0),
(259, 1, '2023-10-03 09:36:58', '2023-10-03 09:36:58', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:36:58', '2023-10-03 09:36:58', '', 52, 'https://av-advertising.com/beyondc/?p=259', 0, 'revision', '', 0),
(260, 1, '2023-10-03 09:37:15', '2023-10-03 09:37:15', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:37:15', '2023-10-03 09:37:15', '', 52, 'https://av-advertising.com/beyondc/?p=260', 0, 'revision', '', 0),
(261, 1, '2023-10-03 09:37:15', '2023-10-03 09:37:15', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:37:15', '2023-10-03 09:37:15', '', 52, 'https://av-advertising.com/beyondc/?p=261', 0, 'revision', '', 0),
(262, 1, '2023-10-03 09:37:15', '2023-10-03 09:37:15', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:37:15', '2023-10-03 09:37:15', '', 52, 'https://av-advertising.com/beyondc/?p=262', 0, 'revision', '', 0),
(263, 1, '2023-10-03 09:37:41', '2023-10-03 09:37:41', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:37:41', '2023-10-03 09:37:41', '', 52, 'https://av-advertising.com/beyondc/?p=263', 0, 'revision', '', 0),
(264, 1, '2023-10-03 09:37:41', '2023-10-03 09:37:41', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:37:41', '2023-10-03 09:37:41', '', 52, 'https://av-advertising.com/beyondc/?p=264', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(265, 1, '2023-10-03 09:37:41', '2023-10-03 09:37:41', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:37:41', '2023-10-03 09:37:41', '', 52, 'https://av-advertising.com/beyondc/?p=265', 0, 'revision', '', 0),
(266, 1, '2023-10-03 09:37:57', '2023-10-03 09:37:57', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:37:57', '2023-10-03 09:37:57', '', 52, 'https://av-advertising.com/beyondc/?p=266', 0, 'revision', '', 0),
(267, 1, '2023-10-03 09:37:57', '2023-10-03 09:37:57', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:37:57', '2023-10-03 09:37:57', '', 52, 'https://av-advertising.com/beyondc/?p=267', 0, 'revision', '', 0),
(268, 1, '2023-10-03 09:37:58', '2023-10-03 09:37:58', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:37:58', '2023-10-03 09:37:58', '', 52, 'https://av-advertising.com/beyondc/?p=268', 0, 'revision', '', 0),
(269, 1, '2023-10-03 09:38:40', '2023-10-03 09:38:40', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:38:40', '2023-10-03 09:38:40', '', 52, 'https://av-advertising.com/beyondc/?p=269', 0, 'revision', '', 0),
(270, 1, '2023-10-03 09:38:40', '2023-10-03 09:38:40', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:38:40', '2023-10-03 09:38:40', '', 52, 'https://av-advertising.com/beyondc/?p=270', 0, 'revision', '', 0),
(271, 1, '2023-10-03 09:38:40', '2023-10-03 09:38:40', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:38:40', '2023-10-03 09:38:40', '', 52, 'https://av-advertising.com/beyondc/?p=271', 0, 'revision', '', 0),
(272, 1, '2023-10-03 09:39:52', '2023-10-03 09:39:52', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:39:52', '2023-10-03 09:39:52', '', 52, 'https://av-advertising.com/beyondc/?p=272', 0, 'revision', '', 0),
(273, 1, '2023-10-03 09:39:52', '2023-10-03 09:39:52', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:39:52', '2023-10-03 09:39:52', '', 52, 'https://av-advertising.com/beyondc/?p=273', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(274, 1, '2023-10-03 09:39:52', '2023-10-03 09:39:52', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:39:52', '2023-10-03 09:39:52', '', 52, 'https://av-advertising.com/beyondc/?p=274', 0, 'revision', '', 0),
(275, 1, '2023-10-03 09:40:47', '2023-10-03 09:40:47', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:40:47', '2023-10-03 09:40:47', '', 52, 'https://av-advertising.com/beyondc/?p=275', 0, 'revision', '', 0),
(276, 1, '2023-10-03 09:40:47', '2023-10-03 09:40:47', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:40:47', '2023-10-03 09:40:47', '', 52, 'https://av-advertising.com/beyondc/?p=276', 0, 'revision', '', 0),
(277, 1, '2023-10-03 09:40:47', '2023-10-03 09:40:47', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-03 09:40:47', '2023-10-03 09:40:47', '', 52, 'https://av-advertising.com/beyondc/?p=277', 0, 'revision', '', 0),
(278, 1, '2023-10-03 09:41:47', '2023-10-03 09:41:47', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Type of Project:</h2>		\n			<h2>Lorem Ipsum</h2>		\n			<h2>Size of Project:</h2>		\n			<h2>Lorem Ipsum</h2>		\n			<h2>Architect</h2>		\n			<h2>Lorem Ipsum</h2>		\n			<h2>Material Used</h2>		\n			<h2>Lorem Ipsum</h2>', 'Project Details', '', 'publish', 'closed', 'closed', '', 'project-details', '', '', '2023-10-03 09:55:01', '2023-10-03 09:55:01', '', 0, 'https://av-advertising.com/beyondc/?page_id=278', 0, 'page', '', 0),
(279, 1, '2023-10-03 09:41:47', '2023-10-03 09:41:47', '', 'Project Details', '', 'inherit', 'closed', 'closed', '', '278-revision-v1', '', '', '2023-10-03 09:41:47', '2023-10-03 09:41:47', '', 278, 'https://av-advertising.com/beyondc/?p=279', 0, 'revision', '', 0),
(280, 1, '2023-10-03 09:51:47', '2023-10-03 09:51:47', '', 'Project Details', '', 'inherit', 'closed', 'closed', '', '278-revision-v1', '', '', '2023-10-03 09:51:47', '2023-10-03 09:51:47', '', 278, 'https://av-advertising.com/beyondc/?p=280', 0, 'revision', '', 0),
(281, 1, '2023-10-03 09:51:47', '2023-10-03 09:51:47', '', 'Project Details', '', 'inherit', 'closed', 'closed', '', '278-revision-v1', '', '', '2023-10-03 09:51:47', '2023-10-03 09:51:47', '', 278, 'https://av-advertising.com/beyondc/?p=281', 0, 'revision', '', 0),
(282, 1, '2023-10-03 09:51:47', '2023-10-03 09:51:47', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Type of Project:</h2>		\n			<h2>Lorem Ipsum</h2>		\n			<h2>Size of Project:</h2>		\n			<h2>Lorem Ipsum</h2>		\n			<h2>Architect</h2>		\n			<h2>Lorem Ipsum</h2>		\n			<h2>Material Used</h2>		\n			<h2>Lorem Ipsum</h2>', 'Project Details', '', 'inherit', 'closed', 'closed', '', '278-revision-v1', '', '', '2023-10-03 09:51:47', '2023-10-03 09:51:47', '', 278, 'https://av-advertising.com/beyondc/?p=282', 0, 'revision', '', 0),
(283, 1, '2023-10-03 09:55:01', '2023-10-03 09:55:01', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Type of Project:</h2>		\n			<h2>Lorem Ipsum</h2>		\n			<h2>Size of Project:</h2>		\n			<h2>Lorem Ipsum</h2>		\n			<h2>Architect</h2>		\n			<h2>Lorem Ipsum</h2>		\n			<h2>Material Used</h2>		\n			<h2>Lorem Ipsum</h2>', 'Project Details', '', 'inherit', 'closed', 'closed', '', '278-revision-v1', '', '', '2023-10-03 09:55:01', '2023-10-03 09:55:01', '', 278, 'https://av-advertising.com/beyondc/?p=283', 0, 'revision', '', 0),
(284, 1, '2023-10-03 09:55:01', '2023-10-03 09:55:01', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Type of Project:</h2>		\n			<h2>Lorem Ipsum</h2>		\n			<h2>Size of Project:</h2>		\n			<h2>Lorem Ipsum</h2>		\n			<h2>Architect</h2>		\n			<h2>Lorem Ipsum</h2>		\n			<h2>Material Used</h2>		\n			<h2>Lorem Ipsum</h2>', 'Project Details', '', 'inherit', 'closed', 'closed', '', '278-revision-v1', '', '', '2023-10-03 09:55:01', '2023-10-03 09:55:01', '', 278, 'https://av-advertising.com/beyondc/?p=284', 0, 'revision', '', 0),
(285, 1, '2023-10-03 09:55:01', '2023-10-03 09:55:01', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Type of Project:</h2>		\n			<h2>Lorem Ipsum</h2>		\n			<h2>Size of Project:</h2>		\n			<h2>Lorem Ipsum</h2>		\n			<h2>Architect</h2>		\n			<h2>Lorem Ipsum</h2>		\n			<h2>Material Used</h2>		\n			<h2>Lorem Ipsum</h2>', 'Project Details', '', 'inherit', 'closed', 'closed', '', '278-revision-v1', '', '', '2023-10-03 09:55:01', '2023-10-03 09:55:01', '', 278, 'https://av-advertising.com/beyondc/?p=285', 0, 'revision', '', 0),
(286, 1, '2023-10-03 09:56:05', '2023-10-03 09:56:05', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-03 09:56:05', '2023-10-03 09:56:05', '', 13, 'https://av-advertising.com/beyondc/?p=286', 0, 'revision', '', 0),
(287, 1, '2023-10-03 09:56:05', '2023-10-03 09:56:05', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-03 09:56:05', '2023-10-03 09:56:05', '', 13, 'https://av-advertising.com/beyondc/?p=287', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(288, 1, '2023-10-03 09:56:05', '2023-10-03 09:56:05', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-03 09:56:05', '2023-10-03 09:56:05', '', 13, 'https://av-advertising.com/beyondc/?p=288', 0, 'revision', '', 0),
(289, 1, '2023-10-03 09:56:17', '2023-10-03 09:56:17', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-03 09:56:17', '2023-10-03 09:56:17', '', 13, 'https://av-advertising.com/beyondc/?p=289', 0, 'revision', '', 0),
(290, 1, '2023-10-03 09:56:17', '2023-10-03 09:56:17', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-03 09:56:17', '2023-10-03 09:56:17', '', 13, 'https://av-advertising.com/beyondc/?p=290', 0, 'revision', '', 0),
(291, 1, '2023-10-03 09:56:17', '2023-10-03 09:56:17', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-03 09:56:17', '2023-10-03 09:56:17', '', 13, 'https://av-advertising.com/beyondc/?p=291', 0, 'revision', '', 0),
(292, 1, '2023-10-03 09:58:28', '2023-10-03 09:58:28', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-03 09:58:28', '2023-10-03 09:58:28', '', 13, 'https://av-advertising.com/beyondc/?p=292', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(293, 1, '2023-10-03 09:58:29', '2023-10-03 09:58:29', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-03 09:58:29', '2023-10-03 09:58:29', '', 13, 'https://av-advertising.com/beyondc/?p=293', 0, 'revision', '', 0),
(294, 1, '2023-10-03 09:58:29', '2023-10-03 09:58:29', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-03 09:58:29', '2023-10-03 09:58:29', '', 13, 'https://av-advertising.com/beyondc/?p=294', 0, 'revision', '', 0),
(297, 1, '2023-10-03 10:04:09', '2023-10-03 10:04:09', '', 'About Us', '', 'inherit', 'closed', 'closed', '', '54-revision-v1', '', '', '2023-10-03 10:04:09', '2023-10-03 10:04:09', '', 54, 'https://av-advertising.com/beyondc/?p=297', 0, 'revision', '', 0),
(298, 1, '2023-10-03 10:04:09', '2023-10-03 10:04:09', '', 'About Us', '', 'inherit', 'closed', 'closed', '', '54-revision-v1', '', '', '2023-10-03 10:04:09', '2023-10-03 10:04:09', '', 54, 'https://av-advertising.com/beyondc/?p=298', 0, 'revision', '', 0),
(299, 1, '2023-10-03 10:04:10', '2023-10-03 10:04:10', '', 'About Us', '', 'inherit', 'closed', 'closed', '', '54-revision-v1', '', '', '2023-10-03 10:04:10', '2023-10-03 10:04:10', '', 54, 'https://av-advertising.com/beyondc/?p=299', 0, 'revision', '', 0),
(301, 1, '2023-10-03 10:09:03', '2023-10-03 10:09:03', '', 'about', '', 'inherit', 'open', 'closed', '', 'about', '', '', '2023-10-03 10:09:03', '2023-10-03 10:09:03', '', 54, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/10/about.jpeg', 0, 'attachment', 'image/jpeg', 0),
(303, 1, '2023-10-03 10:09:49', '2023-10-03 10:09:49', '', 'About Us', '', 'inherit', 'closed', 'closed', '', '54-revision-v1', '', '', '2023-10-03 10:09:49', '2023-10-03 10:09:49', '', 54, 'https://av-advertising.com/beyondc/?p=303', 0, 'revision', '', 0),
(304, 1, '2023-10-03 10:09:49', '2023-10-03 10:09:49', '', 'About Us', '', 'inherit', 'closed', 'closed', '', '54-revision-v1', '', '', '2023-10-03 10:09:49', '2023-10-03 10:09:49', '', 54, 'https://av-advertising.com/beyondc/?p=304', 0, 'revision', '', 0),
(305, 1, '2023-10-03 10:09:49', '2023-10-03 10:09:49', '', 'About Us', '', 'inherit', 'closed', 'closed', '', '54-revision-v1', '', '', '2023-10-03 10:09:49', '2023-10-03 10:09:49', '', 54, 'https://av-advertising.com/beyondc/?p=305', 0, 'revision', '', 0),
(306, 1, '2023-10-03 10:17:43', '2023-10-03 10:17:43', '', 'kumar', '', 'inherit', 'open', 'closed', '', 'kumar', '', '', '2023-10-03 10:17:43', '2023-10-03 10:17:43', '', 54, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kumar.jpeg', 0, 'attachment', 'image/jpeg', 0),
(307, 1, '2023-10-03 10:21:25', '2023-10-03 10:21:25', '', 'About Us', '', 'inherit', 'closed', 'closed', '', '54-revision-v1', '', '', '2023-10-03 10:21:25', '2023-10-03 10:21:25', '', 54, 'https://av-advertising.com/beyondc/?p=307', 0, 'revision', '', 0),
(308, 1, '2023-10-03 10:21:25', '2023-10-03 10:21:25', '', 'About Us', '', 'inherit', 'closed', 'closed', '', '54-revision-v1', '', '', '2023-10-03 10:21:25', '2023-10-03 10:21:25', '', 54, 'https://av-advertising.com/beyondc/?p=308', 0, 'revision', '', 0),
(309, 1, '2023-10-03 10:21:25', '2023-10-03 10:21:25', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>About Us</h2>		\n			<h2>Our Mission</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n			<h2>Our Vision</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n			<h2>Why</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"674\" height=\"658\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kumar.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kumar.jpeg 674w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kumar-300x293.jpeg 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n			<h2>Kumar Varma</h2>		\n			<p>Founder & CEO</p>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '54-revision-v1', '', '', '2023-10-03 10:21:25', '2023-10-03 10:21:25', '', 54, 'https://av-advertising.com/beyondc/?p=309', 0, 'revision', '', 0),
(310, 1, '2023-10-03 10:21:48', '2023-10-03 10:21:48', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>About Us</h2>		\n			<h2>Our Mission</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n			<h2>Our Vision</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n			<h2>Why</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"674\" height=\"658\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kumar.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kumar.jpeg 674w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kumar-300x293.jpeg 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n			<h2>Kumar Varma</h2>		\n			<p>Founder & CEO</p>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '54-revision-v1', '', '', '2023-10-03 10:21:48', '2023-10-03 10:21:48', '', 54, 'https://av-advertising.com/beyondc/?p=310', 0, 'revision', '', 0),
(311, 1, '2023-10-03 10:21:48', '2023-10-03 10:21:48', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>About Us</h2>		\n			<h2>Our Mission</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n			<h2>Our Vision</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n			<h2>Why</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"674\" height=\"658\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kumar.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kumar.jpeg 674w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kumar-300x293.jpeg 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n			<h2>Kumar Varma</h2>		\n			<p>Founder & CEO</p>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '54-revision-v1', '', '', '2023-10-03 10:21:48', '2023-10-03 10:21:48', '', 54, 'https://av-advertising.com/beyondc/?p=311', 0, 'revision', '', 0),
(312, 1, '2023-10-03 10:21:48', '2023-10-03 10:21:48', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>About Us</h2>		\n			<h2>Our Mission</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n			<h2>Our Vision</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n			<h2>Why</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"674\" height=\"658\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kumar.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kumar.jpeg 674w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kumar-300x293.jpeg 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n			<h2>Kumar Varma</h2>		\n			<p>Founder & CEO</p>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '54-revision-v1', '', '', '2023-10-03 10:21:48', '2023-10-03 10:21:48', '', 54, 'https://av-advertising.com/beyondc/?p=312', 0, 'revision', '', 0),
(313, 1, '2023-10-03 10:22:09', '2023-10-03 10:22:09', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>About Us</h2>		\n			<h2>Our Mission</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n			<h2>Our Vision</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n			<h2>Why</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"674\" height=\"658\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kumar.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kumar.jpeg 674w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kumar-300x293.jpeg 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n			<h2>Kumar Varma</h2>		\n			<p>Founder & CEO</p>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '54-revision-v1', '', '', '2023-10-03 10:22:09', '2023-10-03 10:22:09', '', 54, 'https://av-advertising.com/beyondc/?p=313', 0, 'revision', '', 0),
(314, 1, '2023-10-03 10:22:09', '2023-10-03 10:22:09', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>About Us</h2>		\n			<h2>Our Mission</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n			<h2>Our Vision</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n			<h2>Why</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"674\" height=\"658\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kumar.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kumar.jpeg 674w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kumar-300x293.jpeg 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n			<h2>Kumar Varma</h2>		\n			<p>Founder & CEO</p>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '54-revision-v1', '', '', '2023-10-03 10:22:09', '2023-10-03 10:22:09', '', 54, 'https://av-advertising.com/beyondc/?p=314', 0, 'revision', '', 0),
(315, 1, '2023-10-03 10:22:09', '2023-10-03 10:22:09', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>About Us</h2>		\n			<h2>Our Mission</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n			<h2>Our Vision</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n			<h2>Why</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"674\" height=\"658\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kumar.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kumar.jpeg 674w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kumar-300x293.jpeg 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n			<h2>Kumar Varma</h2>		\n			<p>Founder & CEO</p>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '54-revision-v1', '', '', '2023-10-03 10:22:09', '2023-10-03 10:22:09', '', 54, 'https://av-advertising.com/beyondc/?p=315', 0, 'revision', '', 0),
(317, 1, '2023-10-03 10:35:14', '2023-10-03 10:35:14', '', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '56-revision-v1', '', '', '2023-10-03 10:35:14', '2023-10-03 10:35:14', '', 56, 'https://av-advertising.com/beyondc/?p=317', 0, 'revision', '', 0),
(318, 1, '2023-10-03 10:35:14', '2023-10-03 10:35:14', '', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '56-revision-v1', '', '', '2023-10-03 10:35:14', '2023-10-03 10:35:14', '', 56, 'https://av-advertising.com/beyondc/?p=318', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(319, 1, '2023-10-03 10:35:14', '2023-10-03 10:35:14', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>CONTACT & ENQUIRIES</h2>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '56-revision-v1', '', '', '2023-10-03 10:35:14', '2023-10-03 10:35:14', '', 56, 'https://av-advertising.com/beyondc/?p=319', 0, 'revision', '', 0),
(320, 1, '2023-10-03 10:35:55', '2023-10-03 10:35:55', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>CONTACT & ENQUIRIES</h2>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '56-revision-v1', '', '', '2023-10-03 10:35:55', '2023-10-03 10:35:55', '', 56, 'https://av-advertising.com/beyondc/?p=320', 0, 'revision', '', 0),
(321, 1, '2023-10-03 10:35:55', '2023-10-03 10:35:55', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>CONTACT & ENQUIRIES</h2>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '56-revision-v1', '', '', '2023-10-03 10:35:55', '2023-10-03 10:35:55', '', 56, 'https://av-advertising.com/beyondc/?p=321', 0, 'revision', '', 0),
(322, 1, '2023-10-03 10:35:55', '2023-10-03 10:35:55', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>CONTACT & ENQUIRIES</h2>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '56-revision-v1', '', '', '2023-10-03 10:35:55', '2023-10-03 10:35:55', '', 56, 'https://av-advertising.com/beyondc/?p=322', 0, 'revision', '', 0),
(324, 1, '2023-10-04 05:26:51', '2023-10-04 05:26:51', '.current-menu-item{\n	background: #000;\n}\n.home-slider .swiper-slide{\n	padding: 0;\n}\na:focus{\n	outline: 0 !important;\n	border: 0;\n}\n.elementor-13 .elementor-element.elementor-element-31839aa .swiper-pagination-bullet{\n	    width: 30px;\n    border-radius: 0;\n    height: 4px;\n}', 'oceanwp', '', 'publish', 'closed', 'closed', '', 'oceanwp', '', '', '2023-10-05 14:37:49', '2023-10-05 14:37:49', '', 0, 'https://av-advertising.com/beyondc/uncategorized/oceanwp/', 0, 'custom_css', '', 0),
(325, 1, '2023-10-04 05:26:51', '2023-10-04 05:26:51', '.current-menu-item{\n	background: #000;\n}', 'oceanwp', '', 'inherit', 'closed', 'closed', '', '324-revision-v1', '', '', '2023-10-04 05:26:51', '2023-10-04 05:26:51', '', 324, 'https://av-advertising.com/beyondc/?p=325', 0, 'revision', '', 0),
(326, 1, '2023-10-04 05:27:24', '2023-10-04 05:27:24', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>													<a href=\"/Home\">\n							<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />								</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2023-10-04 05:27:24', '2023-10-04 05:27:24', '', 25, 'https://av-advertising.com/beyondc/?p=326', 0, 'revision', '', 0),
(327, 1, '2023-10-04 05:28:21', '2023-10-04 05:28:21', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-04 05:28:21', '2023-10-04 05:28:21', '', 13, 'https://av-advertising.com/beyondc/?p=327', 0, 'revision', '', 0),
(328, 1, '2023-10-04 05:28:21', '2023-10-04 05:28:21', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-04 05:28:21', '2023-10-04 05:28:21', '', 13, 'https://av-advertising.com/beyondc/?p=328', 0, 'revision', '', 0),
(329, 1, '2023-10-04 05:28:21', '2023-10-04 05:28:21', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-04 05:28:21', '2023-10-04 05:28:21', '', 13, 'https://av-advertising.com/beyondc/?p=329', 0, 'revision', '', 0),
(330, 1, '2023-10-04 05:28:34', '2023-10-04 05:28:34', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-04 05:28:34', '2023-10-04 05:28:34', '', 13, 'https://av-advertising.com/beyondc/?p=330', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(331, 1, '2023-10-04 05:28:34', '2023-10-04 05:28:34', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-04 05:28:34', '2023-10-04 05:28:34', '', 13, 'https://av-advertising.com/beyondc/?p=331', 0, 'revision', '', 0),
(332, 1, '2023-10-04 05:28:34', '2023-10-04 05:28:34', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-04 05:28:34', '2023-10-04 05:28:34', '', 13, 'https://av-advertising.com/beyondc/?p=332', 0, 'revision', '', 0),
(333, 1, '2023-10-04 05:38:37', '2023-10-04 05:38:37', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-04 05:38:37', '2023-10-04 05:38:37', '', 13, 'https://av-advertising.com/beyondc/?p=333', 0, 'revision', '', 0),
(334, 1, '2023-10-04 05:38:37', '2023-10-04 05:38:37', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-04 05:38:37', '2023-10-04 05:38:37', '', 13, 'https://av-advertising.com/beyondc/?p=334', 0, 'revision', '', 0),
(335, 1, '2023-10-04 05:38:37', '2023-10-04 05:38:37', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-04 05:38:37', '2023-10-04 05:38:37', '', 13, 'https://av-advertising.com/beyondc/?p=335', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(337, 1, '2023-10-04 05:38:51', '2023-10-04 05:38:51', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-04 05:38:51', '2023-10-04 05:38:51', '', 13, 'https://av-advertising.com/beyondc/?p=337', 0, 'revision', '', 0),
(338, 1, '2023-10-04 05:38:51', '2023-10-04 05:38:51', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-04 05:38:51', '2023-10-04 05:38:51', '', 13, 'https://av-advertising.com/beyondc/?p=338', 0, 'revision', '', 0),
(339, 1, '2023-10-04 05:38:51', '2023-10-04 05:38:51', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-04 05:38:51', '2023-10-04 05:38:51', '', 13, 'https://av-advertising.com/beyondc/?p=339', 0, 'revision', '', 0),
(340, 1, '2023-10-04 05:39:10', '2023-10-04 05:39:10', '.current-menu-item{\n	background: #000;\n}\n.home-slider .swiper-slide{\n	padding: 0;\n}', 'oceanwp', '', 'inherit', 'closed', 'closed', '', '324-revision-v1', '', '', '2023-10-04 05:39:10', '2023-10-04 05:39:10', '', 324, 'https://av-advertising.com/beyondc/?p=340', 0, 'revision', '', 0),
(341, 1, '2023-10-04 05:51:54', '2023-10-04 05:51:54', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>													<a href=\"/\">\n							<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />								</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2023-10-04 05:51:54', '2023-10-04 05:51:54', '', 25, 'https://av-advertising.com/beyondc/?p=341', 0, 'revision', '', 0),
(342, 1, '2023-10-04 05:52:15', '2023-10-04 05:52:15', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>													<a href=\"/beyondc/\">\n							<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/beyond-color-black-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />								</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2023-10-04 05:52:15', '2023-10-04 05:52:15', '', 25, 'https://av-advertising.com/beyondc/?p=342', 0, 'revision', '', 0),
(344, 1, '2023-10-05 11:22:27', '2023-10-05 11:22:27', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-05 11:22:27', '2023-10-05 11:22:27', '', 13, 'https://av-advertising.com/beyondc/?p=344', 0, 'revision', '', 0),
(345, 1, '2023-10-05 11:22:27', '2023-10-05 11:22:27', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Name of Material</h2>		\n			<h2>Name of Material</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-05 11:22:27', '2023-10-05 11:22:27', '', 13, 'https://av-advertising.com/beyondc/?p=345', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(346, 1, '2023-10-05 11:22:27', '2023-10-05 11:22:27', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br /><strong>Eco-friendly materials:</strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.</p><p><strong> Empowering artisans:</strong> We’re more than just a luxury brand; we’re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-05 11:22:27', '2023-10-05 11:22:27', '', 13, 'https://av-advertising.com/beyondc/?p=346', 0, 'revision', '', 0),
(347, 1, '2023-10-05 11:23:40', '2023-10-05 11:23:40', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>About Us</h2>		\n			<h2>Our Mission</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n			<h2>Our Vision</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n			<h2>Why</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"674\" height=\"658\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kumar.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kumar.jpeg 674w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kumar-300x293.jpeg 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n			<h2>Kumar Varma</h2>		\n			<p>Founder & CEO</p>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '54-revision-v1', '', '', '2023-10-05 11:23:40', '2023-10-05 11:23:40', '', 54, 'https://av-advertising.com/beyondc/?p=347', 0, 'revision', '', 0),
(348, 1, '2023-10-05 11:23:40', '2023-10-05 11:23:40', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>About Us</h2>		\n			<h2>Our Mission</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n			<h2>Our Vision</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n			<h2>Why</h2>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"674\" height=\"658\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kumar.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kumar.jpeg 674w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kumar-300x293.jpeg 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n			<h2>Kumar Varma</h2>		\n			<p>Founder & CEO</p>		\n		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem lpsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '54-revision-v1', '', '', '2023-10-05 11:23:40', '2023-10-05 11:23:40', '', 54, 'https://av-advertising.com/beyondc/?p=348', 0, 'revision', '', 0),
(349, 1, '2023-10-05 11:23:40', '2023-10-05 11:23:40', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>About Us</h2>		\n			<h2>Our Mission</h2>		\n		<p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.</p>		\n			<h2>Our Vision</h2>		\n		<p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime</p>		\n			<h2>Why</h2>		\n		<p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br />We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.</p><p>We exist to redefine luxury with a conscience.</p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don’t just tell stories; they create legacies.</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"674\" height=\"658\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kumar.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kumar.jpeg 674w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kumar-300x293.jpeg 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n			<h2>Kumar Varma</h2>		\n			<p>Founder & CEO</p>		\n		<p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar’s journey is one of unwavering passion and dedication.</p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he’s a visionary who believes in the extraordinary.</p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '54-revision-v1', '', '', '2023-10-05 11:23:40', '2023-10-05 11:23:40', '', 54, 'https://av-advertising.com/beyondc/?p=349', 0, 'revision', '', 0),
(350, 1, '2023-10-05 11:25:48', '2023-10-05 11:25:48', '', 'living room', '', 'inherit', 'open', 'closed', '', 'living-room', '', '', '2023-10-05 11:25:48', '2023-10-05 11:25:48', '', 13, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg', 0, 'attachment', 'image/jpeg', 0),
(351, 1, '2023-10-05 11:25:48', '2023-10-05 11:25:48', '', 'bathrooms', '', 'inherit', 'open', 'closed', '', 'bathrooms', '', '', '2023-10-05 11:25:48', '2023-10-05 11:25:48', '', 13, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg', 0, 'attachment', 'image/jpeg', 0),
(352, 1, '2023-10-05 11:25:49', '2023-10-05 11:25:49', '', 'kithchens', '', 'inherit', 'open', 'closed', '', 'kithchens', '', '', '2023-10-05 11:25:49', '2023-10-05 11:25:49', '', 13, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg', 0, 'attachment', 'image/jpeg', 0),
(354, 1, '2023-10-05 11:29:07', '2023-10-05 11:29:07', '', 'by-style-home', '', 'inherit', 'open', 'closed', '', 'by-style-home', '', '', '2023-10-05 11:29:07', '2023-10-05 11:29:07', '', 13, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg', 0, 'attachment', 'image/jpeg', 0),
(355, 1, '2023-10-05 11:31:19', '2023-10-05 11:31:19', '', 'showroom', '', 'inherit', 'open', 'closed', '', 'showroom', '', '', '2023-10-05 11:31:19', '2023-10-05 11:31:19', '', 13, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg', 0, 'attachment', 'image/jpeg', 0),
(357, 1, '2023-10-05 11:33:24', '2023-10-05 11:33:24', '', 'instagram', '', 'inherit', 'open', 'closed', '', 'instagram', '', '', '2023-10-05 11:33:24', '2023-10-05 11:33:24', '', 13, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg', 0, 'attachment', 'image/jpeg', 0),
(358, 1, '2023-10-05 11:33:32', '2023-10-05 11:33:32', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br /><strong>Eco-friendly materials:</strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.</p><p><strong> Empowering artisans:</strong> We’re more than just a luxury brand; we’re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-05 11:33:32', '2023-10-05 11:33:32', '', 13, 'https://av-advertising.com/beyondc/?p=358', 0, 'revision', '', 0),
(359, 1, '2023-10-05 11:33:32', '2023-10-05 11:33:32', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"479\" height=\"479\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1.jpg 479w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-300x300.jpg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/Instagrid-1-150x150.jpg 150w\" sizes=\"(max-width: 479px) 100vw, 479px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br /><strong>Eco-friendly materials:</strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.</p><p><strong> Empowering artisans:</strong> We’re more than just a luxury brand; we’re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-05 11:33:32', '2023-10-05 11:33:32', '', 13, 'https://av-advertising.com/beyondc/?p=359', 0, 'revision', '', 0),
(360, 1, '2023-10-05 11:33:32', '2023-10-05 11:33:32', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"445\" height=\"445\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg 445w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-150x150.jpeg 150w\" sizes=\"(max-width: 445px) 100vw, 445px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br /><strong>Eco-friendly materials:</strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.</p><p><strong> Empowering artisans:</strong> We’re more than just a luxury brand; we’re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-05 11:33:32', '2023-10-05 11:33:32', '', 13, 'https://av-advertising.com/beyondc/?p=360', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(361, 1, '2023-10-05 11:33:44', '2023-10-05 11:33:44', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"445\" height=\"445\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg 445w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-150x150.jpeg 150w\" sizes=\"(max-width: 445px) 100vw, 445px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br /><strong>Eco-friendly materials:</strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.</p><p><strong> Empowering artisans:</strong> We’re more than just a luxury brand; we’re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-05 11:33:44', '2023-10-05 11:33:44', '', 13, 'https://av-advertising.com/beyondc/?p=361', 0, 'revision', '', 0),
(362, 1, '2023-10-05 11:33:44', '2023-10-05 11:33:44', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"445\" height=\"445\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg 445w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-150x150.jpeg 150w\" sizes=\"(max-width: 445px) 100vw, 445px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br /><strong>Eco-friendly materials:</strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.</p><p><strong> Empowering artisans:</strong> We’re more than just a luxury brand; we’re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-05 11:33:44', '2023-10-05 11:33:44', '', 13, 'https://av-advertising.com/beyondc/?p=362', 0, 'revision', '', 0),
(363, 1, '2023-10-05 11:33:44', '2023-10-05 11:33:44', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"445\" height=\"445\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg 445w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-150x150.jpeg 150w\" sizes=\"(max-width: 445px) 100vw, 445px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br /><strong>Eco-friendly materials:</strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.</p><p><strong> Empowering artisans:</strong> We’re more than just a luxury brand; we’re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-05 11:33:44', '2023-10-05 11:33:44', '', 13, 'https://av-advertising.com/beyondc/?p=363', 0, 'revision', '', 0),
(364, 1, '2023-10-05 11:35:38', '2023-10-05 11:35:38', '', 'material3', '', 'inherit', 'open', 'closed', '', 'material3', '', '', '2023-10-05 11:35:38', '2023-10-05 11:35:38', '', 13, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg', 0, 'attachment', 'image/jpeg', 0),
(365, 1, '2023-10-05 11:35:39', '2023-10-05 11:35:39', '', 'material2', '', 'inherit', 'open', 'closed', '', 'material2', '', '', '2023-10-05 11:35:39', '2023-10-05 11:35:39', '', 13, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg', 0, 'attachment', 'image/jpeg', 0),
(366, 1, '2023-10-05 11:35:49', '2023-10-05 11:35:49', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"445\" height=\"445\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg 445w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-150x150.jpeg 150w\" sizes=\"(max-width: 445px) 100vw, 445px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br /><strong>Eco-friendly materials:</strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.</p><p><strong> Empowering artisans:</strong> We’re more than just a luxury brand; we’re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-05 11:35:49', '2023-10-05 11:35:49', '', 13, 'https://av-advertising.com/beyondc/?p=366', 0, 'revision', '', 0),
(367, 1, '2023-10-05 11:35:49', '2023-10-05 11:35:49', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"445\" height=\"445\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg 445w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-150x150.jpeg 150w\" sizes=\"(max-width: 445px) 100vw, 445px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br /><strong>Eco-friendly materials:</strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.</p><p><strong> Empowering artisans:</strong> We’re more than just a luxury brand; we’re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-05 11:35:49', '2023-10-05 11:35:49', '', 13, 'https://av-advertising.com/beyondc/?p=367', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(368, 1, '2023-10-05 11:35:50', '2023-10-05 11:35:50', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"442\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg 442w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-150x150.jpeg 150w\" sizes=\"(max-width: 442px) 100vw, 442px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"445\" height=\"445\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg 445w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-150x150.jpeg 150w\" sizes=\"(max-width: 445px) 100vw, 445px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br /><strong>Eco-friendly materials:</strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.</p><p><strong> Empowering artisans:</strong> We’re more than just a luxury brand; we’re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-05 11:35:50', '2023-10-05 11:35:50', '', 13, 'https://av-advertising.com/beyondc/?p=368', 0, 'revision', '', 0),
(369, 1, '2023-10-05 11:36:21', '2023-10-05 11:36:21', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"442\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg 442w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-150x150.jpeg 150w\" sizes=\"(max-width: 442px) 100vw, 442px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"445\" height=\"445\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg 445w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-150x150.jpeg 150w\" sizes=\"(max-width: 445px) 100vw, 445px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br /><strong>Eco-friendly materials:</strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.</p><p><strong> Empowering artisans:</strong> We’re more than just a luxury brand; we’re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-05 11:36:21', '2023-10-05 11:36:21', '', 13, 'https://av-advertising.com/beyondc/?p=369', 0, 'revision', '', 0),
(370, 1, '2023-10-05 11:36:21', '2023-10-05 11:36:21', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"442\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg 442w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-150x150.jpeg 150w\" sizes=\"(max-width: 442px) 100vw, 442px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"445\" height=\"445\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg 445w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-150x150.jpeg 150w\" sizes=\"(max-width: 445px) 100vw, 445px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br /><strong>Eco-friendly materials:</strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.</p><p><strong> Empowering artisans:</strong> We’re more than just a luxury brand; we’re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-05 11:36:21', '2023-10-05 11:36:21', '', 13, 'https://av-advertising.com/beyondc/?p=370', 0, 'revision', '', 0),
(371, 1, '2023-10-05 11:36:21', '2023-10-05 11:36:21', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"442\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg 442w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-150x150.jpeg 150w\" sizes=\"(max-width: 442px) 100vw, 442px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"445\" height=\"445\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg 445w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-150x150.jpeg 150w\" sizes=\"(max-width: 445px) 100vw, 445px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br /><strong>Eco-friendly materials:</strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.</p><p><strong> Empowering artisans:</strong> We’re more than just a luxury brand; we’re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-05 11:36:21', '2023-10-05 11:36:21', '', 13, 'https://av-advertising.com/beyondc/?p=371', 0, 'revision', '', 0),
(372, 1, '2023-10-05 11:39:02', '2023-10-05 11:39:02', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"442\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg 442w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-150x150.jpeg 150w\" sizes=\"(max-width: 442px) 100vw, 442px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"445\" height=\"445\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg 445w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-150x150.jpeg 150w\" sizes=\"(max-width: 445px) 100vw, 445px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br /><strong>Eco-friendly materials:</strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.</p><p><strong> Empowering artisans:</strong> We’re more than just a luxury brand; we’re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-05 11:39:02', '2023-10-05 11:39:02', '', 13, 'https://av-advertising.com/beyondc/?p=372', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(373, 1, '2023-10-05 11:39:02', '2023-10-05 11:39:02', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"442\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg 442w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-150x150.jpeg 150w\" sizes=\"(max-width: 442px) 100vw, 442px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"445\" height=\"445\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg 445w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-150x150.jpeg 150w\" sizes=\"(max-width: 445px) 100vw, 445px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br /><strong>Eco-friendly materials:</strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.</p><p><strong> Empowering artisans:</strong> We’re more than just a luxury brand; we’re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-05 11:39:02', '2023-10-05 11:39:02', '', 13, 'https://av-advertising.com/beyondc/?p=373', 0, 'revision', '', 0),
(374, 1, '2023-10-05 11:39:03', '2023-10-05 11:39:03', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"442\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg 442w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-150x150.jpeg 150w\" sizes=\"(max-width: 442px) 100vw, 442px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"445\" height=\"445\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg 445w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-150x150.jpeg 150w\" sizes=\"(max-width: 445px) 100vw, 445px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br /><strong>Eco-friendly materials:</strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.</p><p><strong> Empowering artisans:</strong> We’re more than just a luxury brand; we’re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-05 11:39:03', '2023-10-05 11:39:03', '', 13, 'https://av-advertising.com/beyondc/?p=374', 0, 'revision', '', 0),
(375, 1, '2023-10-05 12:14:59', '2023-10-05 12:14:59', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"442\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg 442w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-150x150.jpeg 150w\" sizes=\"(max-width: 442px) 100vw, 442px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"445\" height=\"445\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg 445w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-150x150.jpeg 150w\" sizes=\"(max-width: 445px) 100vw, 445px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br /><strong>Eco-friendly materials:</strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.</p><p><strong> Empowering artisans:</strong> We’re more than just a luxury brand; we’re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-05 12:14:59', '2023-10-05 12:14:59', '', 13, 'https://av-advertising.com/beyondc/?p=375', 0, 'revision', '', 0),
(376, 1, '2023-10-05 12:14:59', '2023-10-05 12:14:59', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"442\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg 442w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-150x150.jpeg 150w\" sizes=\"(max-width: 442px) 100vw, 442px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"445\" height=\"445\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg 445w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-150x150.jpeg 150w\" sizes=\"(max-width: 445px) 100vw, 445px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br /><strong>Eco-friendly materials:</strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.</p><p><strong> Empowering artisans:</strong> We’re more than just a luxury brand; we’re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-05 12:14:59', '2023-10-05 12:14:59', '', 13, 'https://av-advertising.com/beyondc/?p=376', 0, 'revision', '', 0),
(377, 1, '2023-10-05 12:15:00', '2023-10-05 12:15:00', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"442\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg 442w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-150x150.jpeg 150w\" sizes=\"(max-width: 442px) 100vw, 442px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"445\" height=\"445\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg 445w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-150x150.jpeg 150w\" sizes=\"(max-width: 445px) 100vw, 445px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br /><strong>Eco-friendly materials:</strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.</p><p><strong> Empowering artisans:</strong> We’re more than just a luxury brand; we’re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-05 12:15:00', '2023-10-05 12:15:00', '', 13, 'https://av-advertising.com/beyondc/?p=377', 0, 'revision', '', 0),
(378, 1, '2023-10-05 12:18:39', '2023-10-05 12:18:39', '', 'Materials', '', 'inherit', 'closed', 'closed', '', '50-revision-v1', '', '', '2023-10-05 12:18:39', '2023-10-05 12:18:39', '', 50, 'https://av-advertising.com/beyondc/?p=378', 0, 'revision', '', 0),
(379, 1, '2023-10-05 12:18:40', '2023-10-05 12:18:40', '', 'Materials', '', 'inherit', 'closed', 'closed', '', '50-revision-v1', '', '', '2023-10-05 12:18:40', '2023-10-05 12:18:40', '', 50, 'https://av-advertising.com/beyondc/?p=379', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(380, 1, '2023-10-05 12:18:40', '2023-10-05 12:18:40', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Materials', '', 'inherit', 'closed', 'closed', '', '50-revision-v1', '', '', '2023-10-05 12:18:40', '2023-10-05 12:18:40', '', 50, 'https://av-advertising.com/beyondc/?p=380', 0, 'revision', '', 0),
(381, 1, '2023-10-05 12:19:13', '2023-10-05 12:19:13', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Materials', '', 'inherit', 'closed', 'closed', '', '50-revision-v1', '', '', '2023-10-05 12:19:13', '2023-10-05 12:19:13', '', 50, 'https://av-advertising.com/beyondc/?p=381', 0, 'revision', '', 0),
(382, 1, '2023-10-05 12:19:13', '2023-10-05 12:19:13', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Materials', '', 'inherit', 'closed', 'closed', '', '50-revision-v1', '', '', '2023-10-05 12:19:13', '2023-10-05 12:19:13', '', 50, 'https://av-advertising.com/beyondc/?p=382', 0, 'revision', '', 0),
(383, 1, '2023-10-05 12:19:13', '2023-10-05 12:19:13', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Materials', '', 'inherit', 'closed', 'closed', '', '50-revision-v1', '', '', '2023-10-05 12:19:13', '2023-10-05 12:19:13', '', 50, 'https://av-advertising.com/beyondc/?p=383', 0, 'revision', '', 0),
(384, 1, '2023-10-05 12:19:51', '2023-10-05 12:19:51', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Materials', '', 'inherit', 'closed', 'closed', '', '50-revision-v1', '', '', '2023-10-05 12:19:51', '2023-10-05 12:19:51', '', 50, 'https://av-advertising.com/beyondc/?p=384', 0, 'revision', '', 0),
(385, 1, '2023-10-05 12:19:51', '2023-10-05 12:19:51', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Materials', '', 'inherit', 'closed', 'closed', '', '50-revision-v1', '', '', '2023-10-05 12:19:51', '2023-10-05 12:19:51', '', 50, 'https://av-advertising.com/beyondc/?p=385', 0, 'revision', '', 0),
(386, 1, '2023-10-05 12:19:51', '2023-10-05 12:19:51', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Materials', '', 'inherit', 'closed', 'closed', '', '50-revision-v1', '', '', '2023-10-05 12:19:51', '2023-10-05 12:19:51', '', 50, 'https://av-advertising.com/beyondc/?p=386', 0, 'revision', '', 0),
(387, 1, '2023-10-05 14:13:40', '2023-10-05 14:13:40', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Materials', '', 'inherit', 'closed', 'closed', '', '50-revision-v1', '', '', '2023-10-05 14:13:40', '2023-10-05 14:13:40', '', 50, 'https://av-advertising.com/beyondc/?p=387', 0, 'revision', '', 0),
(388, 1, '2023-10-05 14:13:40', '2023-10-05 14:13:40', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Materials', '', 'inherit', 'closed', 'closed', '', '50-revision-v1', '', '', '2023-10-05 14:13:40', '2023-10-05 14:13:40', '', 50, 'https://av-advertising.com/beyondc/?p=388', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(389, 1, '2023-10-05 14:13:40', '2023-10-05 14:13:40', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Materials', '', 'inherit', 'closed', 'closed', '', '50-revision-v1', '', '', '2023-10-05 14:13:40', '2023-10-05 14:13:40', '', 50, 'https://av-advertising.com/beyondc/?p=389', 0, 'revision', '', 0),
(390, 1, '2023-10-05 14:15:13', '2023-10-05 14:15:13', '', 'material', '', 'inherit', 'open', 'closed', '', 'material', '', '', '2023-10-05 14:15:13', '2023-10-05 14:15:13', '', 50, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material.jpeg', 0, 'attachment', 'image/jpeg', 0),
(391, 1, '2023-10-05 14:15:57', '2023-10-05 14:15:57', '', 'material-inside3', '', 'inherit', 'open', 'closed', '', 'material-inside3', '', '', '2023-10-05 14:15:57', '2023-10-05 14:15:57', '', 50, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3.jpeg', 0, 'attachment', 'image/jpeg', 0),
(392, 1, '2023-10-05 14:15:57', '2023-10-05 14:15:57', '', 'material-inside2', '', 'inherit', 'open', 'closed', '', 'material-inside2', '', '', '2023-10-05 14:15:57', '2023-10-05 14:15:57', '', 50, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2.jpeg', 0, 'attachment', 'image/jpeg', 0),
(393, 1, '2023-10-05 14:15:58', '2023-10-05 14:15:58', '', 'materil-inside1', '', 'inherit', 'open', 'closed', '', 'materil-inside1', '', '', '2023-10-05 14:15:58', '2023-10-05 14:15:58', '', 50, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1.jpeg', 0, 'attachment', 'image/jpeg', 0),
(394, 1, '2023-10-05 14:16:10', '2023-10-05 14:16:10', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Materials', '', 'inherit', 'closed', 'closed', '', '50-revision-v1', '', '', '2023-10-05 14:16:10', '2023-10-05 14:16:10', '', 50, 'https://av-advertising.com/beyondc/?p=394', 0, 'revision', '', 0),
(395, 1, '2023-10-05 14:16:10', '2023-10-05 14:16:10', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Materials', '', 'inherit', 'closed', 'closed', '', '50-revision-v1', '', '', '2023-10-05 14:16:10', '2023-10-05 14:16:10', '', 50, 'https://av-advertising.com/beyondc/?p=395', 0, 'revision', '', 0),
(396, 1, '2023-10-05 14:16:10', '2023-10-05 14:16:10', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"332\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material.jpeg 332w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-300x257.jpeg 300w\" sizes=\"(max-width: 332px) 100vw, 332px\" />															\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"332\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1.jpeg 332w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1-300x257.jpeg 300w\" sizes=\"(max-width: 332px) 100vw, 332px\" />															\n															<img width=\"333\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2-300x256.jpeg 300w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />', 'Materials', '', 'inherit', 'closed', 'closed', '', '50-revision-v1', '', '', '2023-10-05 14:16:10', '2023-10-05 14:16:10', '', 50, 'https://av-advertising.com/beyondc/?p=396', 0, 'revision', '', 0),
(397, 1, '2023-10-05 14:17:29', '2023-10-05 14:17:29', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-05 14:17:29', '2023-10-05 14:17:29', '', 52, 'https://av-advertising.com/beyondc/?p=397', 0, 'revision', '', 0),
(398, 1, '2023-10-05 14:17:29', '2023-10-05 14:17:29', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Name of Project</h2>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n			<h2>Name of Project</h2>		\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n			<h2>Name of Project</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-05 14:17:29', '2023-10-05 14:17:29', '', 52, 'https://av-advertising.com/beyondc/?p=398', 0, 'revision', '', 0),
(399, 1, '2023-10-05 14:17:29', '2023-10-05 14:17:29', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Coming Soon</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-05 14:17:29', '2023-10-05 14:17:29', '', 52, 'https://av-advertising.com/beyondc/?p=399', 0, 'revision', '', 0),
(400, 1, '2023-10-05 14:31:49', '2023-10-05 14:31:49', '', 'gallery7', '', 'inherit', 'open', 'closed', '', 'gallery7', '', '', '2023-10-05 14:31:49', '2023-10-05 14:31:49', '', 13, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery7.jpeg', 0, 'attachment', 'image/jpeg', 0),
(401, 1, '2023-10-05 14:31:50', '2023-10-05 14:31:50', '', 'gallery6', '', 'inherit', 'open', 'closed', '', 'gallery6', '', '', '2023-10-05 14:31:50', '2023-10-05 14:31:50', '', 13, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery6.jpeg', 0, 'attachment', 'image/jpeg', 0),
(402, 1, '2023-10-05 14:31:51', '2023-10-05 14:31:51', '', 'gallery5', '', 'inherit', 'open', 'closed', '', 'gallery5', '', '', '2023-10-05 14:31:51', '2023-10-05 14:31:51', '', 13, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery5.jpeg', 0, 'attachment', 'image/jpeg', 0),
(403, 1, '2023-10-05 14:31:52', '2023-10-05 14:31:52', '', 'gallery4', '', 'inherit', 'open', 'closed', '', 'gallery4', '', '', '2023-10-05 14:31:52', '2023-10-05 14:31:52', '', 13, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery4.jpeg', 0, 'attachment', 'image/jpeg', 0),
(404, 1, '2023-10-05 14:31:56', '2023-10-05 14:31:56', '', 'gallery3', '', 'inherit', 'open', 'closed', '', 'gallery3', '', '', '2023-10-05 14:31:56', '2023-10-05 14:31:56', '', 13, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery3.jpeg', 0, 'attachment', 'image/jpeg', 0),
(405, 1, '2023-10-05 14:31:57', '2023-10-05 14:31:57', '', 'gallery1', '', 'inherit', 'open', 'closed', '', 'gallery1', '', '', '2023-10-05 14:31:57', '2023-10-05 14:31:57', '', 13, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery1.jpeg', 0, 'attachment', 'image/jpeg', 0),
(406, 1, '2023-10-05 14:32:17', '2023-10-05 14:32:17', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"442\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg 442w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-150x150.jpeg 150w\" sizes=\"(max-width: 442px) 100vw, 442px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"445\" height=\"445\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg 445w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-150x150.jpeg 150w\" sizes=\"(max-width: 445px) 100vw, 445px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br /><strong>Eco-friendly materials:</strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.</p><p><strong> Empowering artisans:</strong> We’re more than just a luxury brand; we’re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-05 14:32:17', '2023-10-05 14:32:17', '', 13, 'https://av-advertising.com/beyondc/?p=406', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(407, 1, '2023-10-05 14:32:17', '2023-10-05 14:32:17', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"442\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg 442w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-150x150.jpeg 150w\" sizes=\"(max-width: 442px) 100vw, 442px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"445\" height=\"445\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg 445w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-150x150.jpeg 150w\" sizes=\"(max-width: 445px) 100vw, 445px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br /><strong>Eco-friendly materials:</strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.</p><p><strong> Empowering artisans:</strong> We’re more than just a luxury brand; we’re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-05 14:32:17', '2023-10-05 14:32:17', '', 13, 'https://av-advertising.com/beyondc/?p=407', 0, 'revision', '', 0),
(408, 1, '2023-10-05 14:32:17', '2023-10-05 14:32:17', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"442\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg 442w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-150x150.jpeg 150w\" sizes=\"(max-width: 442px) 100vw, 442px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery7.jpeg\" alt=\"gallery7\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery6.jpeg\" alt=\"gallery6\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery5.jpeg\" alt=\"gallery5\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery4.jpeg\" alt=\"gallery4\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery3.jpeg\" alt=\"gallery3\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery1.jpeg\" alt=\"gallery1\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"445\" height=\"445\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg 445w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-150x150.jpeg 150w\" sizes=\"(max-width: 445px) 100vw, 445px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br /><strong>Eco-friendly materials:</strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.</p><p><strong> Empowering artisans:</strong> We’re more than just a luxury brand; we’re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-05 14:32:17', '2023-10-05 14:32:17', '', 13, 'https://av-advertising.com/beyondc/?p=408', 0, 'revision', '', 0),
(410, 1, '2023-10-05 14:33:04', '2023-10-05 14:33:04', '.current-menu-item{\n	background: #000;\n}\n.home-slider .swiper-slide{\n	padding: 0;\n}\na:focus{\n	outline: 0;\n}', 'oceanwp', '', 'inherit', 'closed', 'closed', '', '324-revision-v1', '', '', '2023-10-05 14:33:04', '2023-10-05 14:33:04', '', 324, 'https://av-advertising.com/beyondc/?p=410', 0, 'revision', '', 0),
(412, 1, '2023-10-05 14:33:14', '2023-10-05 14:33:14', '.current-menu-item{\n	background: #000;\n}\n.home-slider .swiper-slide{\n	padding: 0;\n}\na:focus{\n	outline: 0;\n	border: 0;\n}', 'oceanwp', '', 'inherit', 'closed', 'closed', '', '324-revision-v1', '', '', '2023-10-05 14:33:14', '2023-10-05 14:33:14', '', 324, 'https://av-advertising.com/beyondc/?p=412', 0, 'revision', '', 0),
(414, 1, '2023-10-05 14:36:11', '2023-10-05 14:36:11', '.current-menu-item{\n	background: #000;\n}\n.home-slider .swiper-slide{\n	padding: 0;\n}\na:focus{\n	outline: 0 !important;\n	border: 0;\n}', 'oceanwp', '', 'inherit', 'closed', 'closed', '', '324-revision-v1', '', '', '2023-10-05 14:36:11', '2023-10-05 14:36:11', '', 324, 'https://av-advertising.com/beyondc/?p=414', 0, 'revision', '', 0),
(415, 1, '2023-10-05 14:36:46', '2023-10-05 14:36:46', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"442\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg 442w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-150x150.jpeg 150w\" sizes=\"(max-width: 442px) 100vw, 442px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery7.jpeg\" alt=\"gallery7\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery6.jpeg\" alt=\"gallery6\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery5.jpeg\" alt=\"gallery5\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery4.jpeg\" alt=\"gallery4\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery3.jpeg\" alt=\"gallery3\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery1.jpeg\" alt=\"gallery1\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"445\" height=\"445\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg 445w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-150x150.jpeg 150w\" sizes=\"(max-width: 445px) 100vw, 445px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br /><strong>Eco-friendly materials:</strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.</p><p><strong> Empowering artisans:</strong> We’re more than just a luxury brand; we’re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-05 14:36:46', '2023-10-05 14:36:46', '', 13, 'https://av-advertising.com/beyondc/?p=415', 0, 'revision', '', 0),
(416, 1, '2023-10-05 14:36:46', '2023-10-05 14:36:46', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"442\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg 442w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-150x150.jpeg 150w\" sizes=\"(max-width: 442px) 100vw, 442px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery7.jpeg\" alt=\"gallery7\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery6.jpeg\" alt=\"gallery6\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery5.jpeg\" alt=\"gallery5\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery4.jpeg\" alt=\"gallery4\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery3.jpeg\" alt=\"gallery3\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery1.jpeg\" alt=\"gallery1\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"445\" height=\"445\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg 445w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-150x150.jpeg 150w\" sizes=\"(max-width: 445px) 100vw, 445px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br /><strong>Eco-friendly materials:</strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.</p><p><strong> Empowering artisans:</strong> We’re more than just a luxury brand; we’re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-05 14:36:46', '2023-10-05 14:36:46', '', 13, 'https://av-advertising.com/beyondc/?p=416', 0, 'revision', '', 0),
(417, 1, '2023-10-05 14:36:46', '2023-10-05 14:36:46', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"442\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg 442w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-150x150.jpeg 150w\" sizes=\"(max-width: 442px) 100vw, 442px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery7.jpeg\" alt=\"gallery7\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery6.jpeg\" alt=\"gallery6\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery5.jpeg\" alt=\"gallery5\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery4.jpeg\" alt=\"gallery4\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery3.jpeg\" alt=\"gallery3\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery1.jpeg\" alt=\"gallery1\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"445\" height=\"445\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg 445w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-150x150.jpeg 150w\" sizes=\"(max-width: 445px) 100vw, 445px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br /><strong>Eco-friendly materials:</strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.</p><p><strong> Empowering artisans:</strong> We’re more than just a luxury brand; we’re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-05 14:36:46', '2023-10-05 14:36:46', '', 13, 'https://av-advertising.com/beyondc/?p=417', 0, 'revision', '', 0),
(419, 1, '2023-10-05 14:37:49', '2023-10-05 14:37:49', '.current-menu-item{\n	background: #000;\n}\n.home-slider .swiper-slide{\n	padding: 0;\n}\na:focus{\n	outline: 0 !important;\n	border: 0;\n}\n.elementor-13 .elementor-element.elementor-element-31839aa .swiper-pagination-bullet{\n	    width: 30px;\n    border-radius: 0;\n    height: 4px;\n}', 'oceanwp', '', 'inherit', 'closed', 'closed', '', '324-revision-v1', '', '', '2023-10-05 14:37:49', '2023-10-05 14:37:49', '', 324, 'https://av-advertising.com/beyondc/?p=419', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(421, 1, '2023-10-06 07:06:19', '2023-10-06 07:06:19', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Coming Soon</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-06 07:06:19', '2023-10-06 07:06:19', '', 52, 'https://av-advertising.com/beyondc/?p=421', 0, 'revision', '', 0),
(422, 1, '2023-10-06 07:06:19', '2023-10-06 07:06:19', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Coming Soon</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-06 07:06:19', '2023-10-06 07:06:19', '', 52, 'https://av-advertising.com/beyondc/?p=422', 0, 'revision', '', 0),
(423, 1, '2023-10-06 07:06:19', '2023-10-06 07:06:19', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Coming Soon</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-06 07:06:19', '2023-10-06 07:06:19', '', 52, 'https://av-advertising.com/beyondc/?p=423', 0, 'revision', '', 0),
(424, 1, '2023-10-06 07:07:42', '2023-10-06 07:07:42', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Coming Soon</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-06 07:07:42', '2023-10-06 07:07:42', '', 52, 'https://av-advertising.com/beyondc/?p=424', 0, 'revision', '', 0),
(425, 1, '2023-10-06 07:07:42', '2023-10-06 07:07:42', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Coming Soon</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-06 07:07:42', '2023-10-06 07:07:42', '', 52, 'https://av-advertising.com/beyondc/?p=425', 0, 'revision', '', 0),
(426, 1, '2023-10-06 07:07:42', '2023-10-06 07:07:42', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Coming Soon</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-06 07:07:42', '2023-10-06 07:07:42', '', 52, 'https://av-advertising.com/beyondc/?p=426', 0, 'revision', '', 0),
(427, 1, '2023-10-06 07:08:19', '2023-10-06 07:08:19', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"332\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material.jpeg 332w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-300x257.jpeg 300w\" sizes=\"(max-width: 332px) 100vw, 332px\" />															\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"332\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1.jpeg 332w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1-300x257.jpeg 300w\" sizes=\"(max-width: 332px) 100vw, 332px\" />															\n															<img width=\"333\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2-300x256.jpeg 300w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />', 'Materials', '', 'inherit', 'closed', 'closed', '', '50-revision-v1', '', '', '2023-10-06 07:08:19', '2023-10-06 07:08:19', '', 50, 'https://av-advertising.com/beyondc/?p=427', 0, 'revision', '', 0),
(428, 1, '2023-10-06 07:08:19', '2023-10-06 07:08:19', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"332\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material.jpeg 332w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-300x257.jpeg 300w\" sizes=\"(max-width: 332px) 100vw, 332px\" />															\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"332\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1.jpeg 332w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1-300x257.jpeg 300w\" sizes=\"(max-width: 332px) 100vw, 332px\" />															\n															<img width=\"333\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2-300x256.jpeg 300w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />', 'Materials', '', 'inherit', 'closed', 'closed', '', '50-revision-v1', '', '', '2023-10-06 07:08:19', '2023-10-06 07:08:19', '', 50, 'https://av-advertising.com/beyondc/?p=428', 0, 'revision', '', 0),
(429, 1, '2023-10-06 07:08:19', '2023-10-06 07:08:19', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"332\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material.jpeg 332w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-300x257.jpeg 300w\" sizes=\"(max-width: 332px) 100vw, 332px\" />															\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"332\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1.jpeg 332w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1-300x257.jpeg 300w\" sizes=\"(max-width: 332px) 100vw, 332px\" />															\n															<img width=\"333\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2-300x256.jpeg 300w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />', 'Materials', '', 'inherit', 'closed', 'closed', '', '50-revision-v1', '', '', '2023-10-06 07:08:19', '2023-10-06 07:08:19', '', 50, 'https://av-advertising.com/beyondc/?p=429', 0, 'revision', '', 0),
(430, 1, '2023-10-06 07:09:37', '2023-10-06 07:09:37', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"442\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg 442w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-150x150.jpeg 150w\" sizes=\"(max-width: 442px) 100vw, 442px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery7.jpeg\" alt=\"gallery7\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery6.jpeg\" alt=\"gallery6\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery5.jpeg\" alt=\"gallery5\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery4.jpeg\" alt=\"gallery4\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery3.jpeg\" alt=\"gallery3\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery1.jpeg\" alt=\"gallery1\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"445\" height=\"445\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg 445w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-150x150.jpeg 150w\" sizes=\"(max-width: 445px) 100vw, 445px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br /><strong>Eco-friendly materials:</strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.</p><p><strong> Empowering artisans:</strong> We’re more than just a luxury brand; we’re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-06 07:09:37', '2023-10-06 07:09:37', '', 13, 'https://av-advertising.com/beyondc/?p=430', 0, 'revision', '', 0),
(431, 1, '2023-10-06 07:09:37', '2023-10-06 07:09:37', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"442\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg 442w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-150x150.jpeg 150w\" sizes=\"(max-width: 442px) 100vw, 442px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery7.jpeg\" alt=\"gallery7\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery6.jpeg\" alt=\"gallery6\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery5.jpeg\" alt=\"gallery5\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery4.jpeg\" alt=\"gallery4\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery3.jpeg\" alt=\"gallery3\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery1.jpeg\" alt=\"gallery1\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"445\" height=\"445\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg 445w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-150x150.jpeg 150w\" sizes=\"(max-width: 445px) 100vw, 445px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br /><strong>Eco-friendly materials:</strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.</p><p><strong> Empowering artisans:</strong> We’re more than just a luxury brand; we’re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-06 07:09:37', '2023-10-06 07:09:37', '', 13, 'https://av-advertising.com/beyondc/?p=431', 0, 'revision', '', 0),
(432, 1, '2023-10-06 07:09:37', '2023-10-06 07:09:37', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"442\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg 442w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-150x150.jpeg 150w\" sizes=\"(max-width: 442px) 100vw, 442px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery7.jpeg\" alt=\"gallery7\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery6.jpeg\" alt=\"gallery6\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery5.jpeg\" alt=\"gallery5\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery4.jpeg\" alt=\"gallery4\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery3.jpeg\" alt=\"gallery3\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery1.jpeg\" alt=\"gallery1\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"445\" height=\"445\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg 445w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-150x150.jpeg 150w\" sizes=\"(max-width: 445px) 100vw, 445px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br /><strong>Eco-friendly materials:</strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.</p><p><strong> Empowering artisans:</strong> We’re more than just a luxury brand; we’re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-06 07:09:37', '2023-10-06 07:09:37', '', 13, 'https://av-advertising.com/beyondc/?p=432', 0, 'revision', '', 0),
(433, 1, '2023-10-06 07:11:25', '2023-10-06 07:11:25', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '6-revision-v1', '', '', '2023-10-06 07:11:25', '2023-10-06 07:11:25', '', 6, 'https://av-advertising.com/beyondc/?p=433', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(434, 1, '2023-10-06 07:13:23', '2023-10-06 07:13:23', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"442\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg 442w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-150x150.jpeg 150w\" sizes=\"(max-width: 442px) 100vw, 442px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery7.jpeg\" alt=\"gallery7\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery6.jpeg\" alt=\"gallery6\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery5.jpeg\" alt=\"gallery5\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery4.jpeg\" alt=\"gallery4\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery3.jpeg\" alt=\"gallery3\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery1.jpeg\" alt=\"gallery1\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"445\" height=\"445\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg 445w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-150x150.jpeg 150w\" sizes=\"(max-width: 445px) 100vw, 445px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br /><strong>Eco-friendly materials:</strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.</p><p><strong> Empowering artisans:</strong> We’re more than just a luxury brand; we’re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-06 07:13:23', '2023-10-06 07:13:23', '', 13, 'https://av-advertising.com/beyondc/?p=434', 0, 'revision', '', 0),
(435, 1, '2023-10-06 07:13:23', '2023-10-06 07:13:23', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"442\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg 442w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-150x150.jpeg 150w\" sizes=\"(max-width: 442px) 100vw, 442px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery7.jpeg\" alt=\"gallery7\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery6.jpeg\" alt=\"gallery6\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery5.jpeg\" alt=\"gallery5\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery4.jpeg\" alt=\"gallery4\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery3.jpeg\" alt=\"gallery3\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery1.jpeg\" alt=\"gallery1\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"445\" height=\"445\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg 445w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-150x150.jpeg 150w\" sizes=\"(max-width: 445px) 100vw, 445px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br /><strong>Eco-friendly materials:</strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.</p><p><strong> Empowering artisans:</strong> We’re more than just a luxury brand; we’re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-06 07:13:23', '2023-10-06 07:13:23', '', 13, 'https://av-advertising.com/beyondc/?p=435', 0, 'revision', '', 0),
(436, 1, '2023-10-06 07:13:23', '2023-10-06 07:13:23', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"442\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg 442w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-150x150.jpeg 150w\" sizes=\"(max-width: 442px) 100vw, 442px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery7.jpeg\" alt=\"gallery7\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery6.jpeg\" alt=\"gallery6\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery5.jpeg\" alt=\"gallery5\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery4.jpeg\" alt=\"gallery4\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery3.jpeg\" alt=\"gallery3\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery1.jpeg\" alt=\"gallery1\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"445\" height=\"445\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg 445w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-150x150.jpeg 150w\" sizes=\"(max-width: 445px) 100vw, 445px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br /><strong>Eco-friendly materials:</strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.</p><p><strong> Empowering artisans:</strong> We’re more than just a luxury brand; we’re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-06 07:13:23', '2023-10-06 07:13:23', '', 13, 'https://av-advertising.com/beyondc/?p=436', 0, 'revision', '', 0),
(437, 1, '2023-10-06 08:13:37', '2023-10-06 08:13:37', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"332\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material.jpeg 332w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-300x257.jpeg 300w\" sizes=\"(max-width: 332px) 100vw, 332px\" />															\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"332\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1.jpeg 332w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1-300x257.jpeg 300w\" sizes=\"(max-width: 332px) 100vw, 332px\" />															\n															<img width=\"333\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2-300x256.jpeg 300w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />', 'Materials', '', 'inherit', 'closed', 'closed', '', '50-revision-v1', '', '', '2023-10-06 08:13:37', '2023-10-06 08:13:37', '', 50, 'https://av-advertising.com/beyondc/?p=437', 0, 'revision', '', 0),
(438, 1, '2023-10-06 08:13:37', '2023-10-06 08:13:37', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"332\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material.jpeg 332w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-300x257.jpeg 300w\" sizes=\"(max-width: 332px) 100vw, 332px\" />															\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"332\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1.jpeg 332w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1-300x257.jpeg 300w\" sizes=\"(max-width: 332px) 100vw, 332px\" />															\n															<img width=\"333\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2-300x256.jpeg 300w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />', 'Materials', '', 'inherit', 'closed', 'closed', '', '50-revision-v1', '', '', '2023-10-06 08:13:37', '2023-10-06 08:13:37', '', 50, 'https://av-advertising.com/beyondc/?p=438', 0, 'revision', '', 0),
(439, 1, '2023-10-06 08:13:37', '2023-10-06 08:13:37', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"332\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material.jpeg 332w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-300x257.jpeg 300w\" sizes=\"(max-width: 332px) 100vw, 332px\" />															\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"332\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1.jpeg 332w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1-300x257.jpeg 300w\" sizes=\"(max-width: 332px) 100vw, 332px\" />															\n															<img width=\"333\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2-300x256.jpeg 300w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />', 'Materials', '', 'inherit', 'closed', 'closed', '', '50-revision-v1', '', '', '2023-10-06 08:13:37', '2023-10-06 08:13:37', '', 50, 'https://av-advertising.com/beyondc/?p=439', 0, 'revision', '', 0),
(440, 1, '2023-10-06 08:14:17', '2023-10-06 08:14:17', '', 'KV_IMG1', '', 'inherit', 'open', 'closed', '', 'kv_img1', '', '', '2023-10-06 08:14:17', '2023-10-06 08:14:17', '', 54, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1.jpg', 0, 'attachment', 'image/jpeg', 0),
(441, 1, '2023-10-06 08:14:25', '2023-10-06 08:14:25', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>About Us</h2>		\n			<h2>Our Mission</h2>		\n		<p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.</p>		\n			<h2>Our Vision</h2>		\n		<p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime</p>		\n			<h2>Why</h2>		\n		<p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br />We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.</p><p>We exist to redefine luxury with a conscience.</p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don’t just tell stories; they create legacies.</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"674\" height=\"658\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kumar.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kumar.jpeg 674w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kumar-300x293.jpeg 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n			<h2>Kumar Varma</h2>		\n			<p>Founder & CEO</p>		\n		<p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar’s journey is one of unwavering passion and dedication.</p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he’s a visionary who believes in the extraordinary.</p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '54-revision-v1', '', '', '2023-10-06 08:14:25', '2023-10-06 08:14:25', '', 54, 'https://av-advertising.com/beyondc/?p=441', 0, 'revision', '', 0),
(442, 1, '2023-10-06 08:14:25', '2023-10-06 08:14:25', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>About Us</h2>		\n			<h2>Our Mission</h2>		\n		<p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.</p>		\n			<h2>Our Vision</h2>		\n		<p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime</p>		\n			<h2>Why</h2>		\n		<p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br />We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.</p><p>We exist to redefine luxury with a conscience.</p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don’t just tell stories; they create legacies.</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"674\" height=\"658\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kumar.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kumar.jpeg 674w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kumar-300x293.jpeg 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n			<h2>Kumar Varma</h2>		\n			<p>Founder & CEO</p>		\n		<p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar’s journey is one of unwavering passion and dedication.</p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he’s a visionary who believes in the extraordinary.</p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '54-revision-v1', '', '', '2023-10-06 08:14:25', '2023-10-06 08:14:25', '', 54, 'https://av-advertising.com/beyondc/?p=442', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(443, 1, '2023-10-06 08:14:25', '2023-10-06 08:14:25', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>About Us</h2>		\n			<h2>Our Mission</h2>		\n		<p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.</p>		\n			<h2>Our Vision</h2>		\n		<p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime</p>		\n			<h2>Why</h2>		\n		<p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br />We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.</p><p>We exist to redefine luxury with a conscience.</p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don’t just tell stories; they create legacies.</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"375\" height=\"450\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1.jpg 375w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1-250x300.jpg 250w\" sizes=\"(max-width: 375px) 100vw, 375px\" />															\n			<h2>Kumar Verma</h2>		\n			<p>Founder & CEO</p>		\n		<p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar’s journey is one of unwavering passion and dedication.</p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he’s a visionary who believes in the extraordinary.</p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '54-revision-v1', '', '', '2023-10-06 08:14:25', '2023-10-06 08:14:25', '', 54, 'https://av-advertising.com/beyondc/?p=443', 0, 'revision', '', 0),
(444, 1, '2023-10-06 08:15:12', '2023-10-06 08:15:12', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"442\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg 442w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-150x150.jpeg 150w\" sizes=\"(max-width: 442px) 100vw, 442px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery7.jpeg\" alt=\"gallery7\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery6.jpeg\" alt=\"gallery6\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery5.jpeg\" alt=\"gallery5\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery4.jpeg\" alt=\"gallery4\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery3.jpeg\" alt=\"gallery3\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery1.jpeg\" alt=\"gallery1\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"445\" height=\"445\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg 445w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-150x150.jpeg 150w\" sizes=\"(max-width: 445px) 100vw, 445px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br /><strong>Eco-friendly materials:</strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.</p><p><strong> Empowering artisans:</strong> We’re more than just a luxury brand; we’re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-06 08:15:12', '2023-10-06 08:15:12', '', 13, 'https://av-advertising.com/beyondc/?p=444', 0, 'revision', '', 0),
(445, 1, '2023-10-06 08:15:12', '2023-10-06 08:15:12', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"442\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg 442w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-150x150.jpeg 150w\" sizes=\"(max-width: 442px) 100vw, 442px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery7.jpeg\" alt=\"gallery7\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery6.jpeg\" alt=\"gallery6\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery5.jpeg\" alt=\"gallery5\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery4.jpeg\" alt=\"gallery4\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery3.jpeg\" alt=\"gallery3\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery1.jpeg\" alt=\"gallery1\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"445\" height=\"445\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg 445w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-150x150.jpeg 150w\" sizes=\"(max-width: 445px) 100vw, 445px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br /><strong>Eco-friendly materials:</strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.</p><p><strong> Empowering artisans:</strong> We’re more than just a luxury brand; we’re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-06 08:15:12', '2023-10-06 08:15:12', '', 13, 'https://av-advertising.com/beyondc/?p=445', 0, 'revision', '', 0),
(446, 1, '2023-10-06 08:15:12', '2023-10-06 08:15:12', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"442\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg 442w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-150x150.jpeg 150w\" sizes=\"(max-width: 442px) 100vw, 442px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery7.jpeg\" alt=\"gallery7\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery6.jpeg\" alt=\"gallery6\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery5.jpeg\" alt=\"gallery5\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery4.jpeg\" alt=\"gallery4\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery3.jpeg\" alt=\"gallery3\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery1.jpeg\" alt=\"gallery1\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"445\" height=\"445\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg 445w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-150x150.jpeg 150w\" sizes=\"(max-width: 445px) 100vw, 445px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br /><strong>Eco-friendly materials:</strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.</p><p><strong> Empowering artisans:</strong> We’re more than just a luxury brand; we’re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-06 08:15:12', '2023-10-06 08:15:12', '', 13, 'https://av-advertising.com/beyondc/?p=446', 0, 'revision', '', 0),
(447, 1, '2023-10-06 08:16:51', '2023-10-06 08:16:51', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>About Us</h2>		\n			<h2>Our Mission</h2>		\n		<p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.</p>		\n			<h2>Our Vision</h2>		\n		<p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime</p>		\n			<h2>Why</h2>		\n		<p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br />We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.</p><p>We exist to redefine luxury with a conscience.</p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don’t just tell stories; they create legacies.</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"375\" height=\"450\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1.jpg 375w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1-250x300.jpg 250w\" sizes=\"(max-width: 375px) 100vw, 375px\" />															\n			<h2>Kumar Verma</h2>		\n			<p>Founder & CEO</p>		\n		<p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar’s journey is one of unwavering passion and dedication.</p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he’s a visionary who believes in the extraordinary.</p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '54-revision-v1', '', '', '2023-10-06 08:16:51', '2023-10-06 08:16:51', '', 54, 'https://av-advertising.com/beyondc/?p=447', 0, 'revision', '', 0),
(448, 1, '2023-10-06 08:16:51', '2023-10-06 08:16:51', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>About Us</h2>		\n			<h2>Our Mission</h2>		\n		<p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.</p>		\n			<h2>Our Vision</h2>		\n		<p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime</p>		\n			<h2>Why</h2>		\n		<p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br />We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.</p><p>We exist to redefine luxury with a conscience.</p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don’t just tell stories; they create legacies.</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"375\" height=\"450\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1.jpg 375w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1-250x300.jpg 250w\" sizes=\"(max-width: 375px) 100vw, 375px\" />															\n			<h2>Kumar Verma</h2>		\n			<p>Founder & CEO</p>		\n		<p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar’s journey is one of unwavering passion and dedication.</p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he’s a visionary who believes in the extraordinary.</p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '54-revision-v1', '', '', '2023-10-06 08:16:51', '2023-10-06 08:16:51', '', 54, 'https://av-advertising.com/beyondc/?p=448', 0, 'revision', '', 0),
(449, 1, '2023-10-06 08:16:51', '2023-10-06 08:16:51', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>About Us</h2>		\n			<h2>Our Mission</h2>		\n		<p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.</p>		\n			<h2>Our Vision</h2>		\n		<p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime</p>		\n			<h2>Why</h2>		\n		<p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br />We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.</p><p>We exist to redefine luxury with a conscience.</p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don’t just tell stories; they create legacies.</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"375\" height=\"450\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1.jpg 375w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1-250x300.jpg 250w\" sizes=\"(max-width: 375px) 100vw, 375px\" />															\n			<h2>Kumar Verma</h2>		\n			<p>Founder & CEO</p>		\n		<p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar’s journey is one of unwavering passion and dedication.</p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he’s a visionary who believes in the extraordinary.</p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '54-revision-v1', '', '', '2023-10-06 08:16:51', '2023-10-06 08:16:51', '', 54, 'https://av-advertising.com/beyondc/?p=449', 0, 'revision', '', 0),
(450, 1, '2023-10-06 08:18:32', '2023-10-06 08:18:32', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"332\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material.jpeg 332w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-300x257.jpeg 300w\" sizes=\"(max-width: 332px) 100vw, 332px\" />															\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"332\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1.jpeg 332w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1-300x257.jpeg 300w\" sizes=\"(max-width: 332px) 100vw, 332px\" />															\n															<img width=\"333\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2-300x256.jpeg 300w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />', 'Materials', '', 'inherit', 'closed', 'closed', '', '50-revision-v1', '', '', '2023-10-06 08:18:32', '2023-10-06 08:18:32', '', 50, 'https://av-advertising.com/beyondc/?p=450', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(451, 1, '2023-10-06 08:18:32', '2023-10-06 08:18:32', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"332\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material.jpeg 332w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-300x257.jpeg 300w\" sizes=\"(max-width: 332px) 100vw, 332px\" />															\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"332\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1.jpeg 332w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1-300x257.jpeg 300w\" sizes=\"(max-width: 332px) 100vw, 332px\" />															\n															<img width=\"333\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2-300x256.jpeg 300w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />', 'Materials', '', 'inherit', 'closed', 'closed', '', '50-revision-v1', '', '', '2023-10-06 08:18:32', '2023-10-06 08:18:32', '', 50, 'https://av-advertising.com/beyondc/?p=451', 0, 'revision', '', 0),
(452, 1, '2023-10-06 08:18:32', '2023-10-06 08:18:32', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"332\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material.jpeg 332w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-300x257.jpeg 300w\" sizes=\"(max-width: 332px) 100vw, 332px\" />															\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"332\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1.jpeg 332w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1-300x257.jpeg 300w\" sizes=\"(max-width: 332px) 100vw, 332px\" />															\n															<img width=\"333\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2-300x256.jpeg 300w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />', 'Materials', '', 'inherit', 'closed', 'closed', '', '50-revision-v1', '', '', '2023-10-06 08:18:32', '2023-10-06 08:18:32', '', 50, 'https://av-advertising.com/beyondc/?p=452', 0, 'revision', '', 0),
(453, 1, '2023-10-06 08:18:57', '2023-10-06 08:18:57', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"332\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material.jpeg 332w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-300x257.jpeg 300w\" sizes=\"(max-width: 332px) 100vw, 332px\" />															\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"332\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1.jpeg 332w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1-300x257.jpeg 300w\" sizes=\"(max-width: 332px) 100vw, 332px\" />															\n															<img width=\"333\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2-300x256.jpeg 300w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />', 'Materials', '', 'inherit', 'closed', 'closed', '', '50-revision-v1', '', '', '2023-10-06 08:18:57', '2023-10-06 08:18:57', '', 50, 'https://av-advertising.com/beyondc/?p=453', 0, 'revision', '', 0),
(454, 1, '2023-10-06 08:18:57', '2023-10-06 08:18:57', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"332\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material.jpeg 332w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-300x257.jpeg 300w\" sizes=\"(max-width: 332px) 100vw, 332px\" />															\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"332\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1.jpeg 332w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1-300x257.jpeg 300w\" sizes=\"(max-width: 332px) 100vw, 332px\" />															\n															<img width=\"333\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2-300x256.jpeg 300w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />', 'Materials', '', 'inherit', 'closed', 'closed', '', '50-revision-v1', '', '', '2023-10-06 08:18:57', '2023-10-06 08:18:57', '', 50, 'https://av-advertising.com/beyondc/?p=454', 0, 'revision', '', 0),
(455, 1, '2023-10-06 08:18:57', '2023-10-06 08:18:57', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"332\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material.jpeg 332w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-300x257.jpeg 300w\" sizes=\"(max-width: 332px) 100vw, 332px\" />															\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"332\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1.jpeg 332w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1-300x257.jpeg 300w\" sizes=\"(max-width: 332px) 100vw, 332px\" />															\n															<img width=\"333\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2-300x256.jpeg 300w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />', 'Materials', '', 'inherit', 'closed', 'closed', '', '50-revision-v1', '', '', '2023-10-06 08:18:57', '2023-10-06 08:18:57', '', 50, 'https://av-advertising.com/beyondc/?p=455', 0, 'revision', '', 0),
(456, 1, '2023-10-06 08:19:21', '2023-10-06 08:19:21', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"332\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material.jpeg 332w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-300x257.jpeg 300w\" sizes=\"(max-width: 332px) 100vw, 332px\" />															\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"332\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1.jpeg 332w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1-300x257.jpeg 300w\" sizes=\"(max-width: 332px) 100vw, 332px\" />															\n															<img width=\"333\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2-300x256.jpeg 300w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />', 'Materials', '', 'inherit', 'closed', 'closed', '', '50-revision-v1', '', '', '2023-10-06 08:19:21', '2023-10-06 08:19:21', '', 50, 'https://av-advertising.com/beyondc/?p=456', 0, 'revision', '', 0),
(457, 1, '2023-10-06 08:19:21', '2023-10-06 08:19:21', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"332\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material.jpeg 332w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-300x257.jpeg 300w\" sizes=\"(max-width: 332px) 100vw, 332px\" />															\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"332\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1.jpeg 332w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1-300x257.jpeg 300w\" sizes=\"(max-width: 332px) 100vw, 332px\" />															\n															<img width=\"333\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2-300x256.jpeg 300w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />', 'Materials', '', 'inherit', 'closed', 'closed', '', '50-revision-v1', '', '', '2023-10-06 08:19:21', '2023-10-06 08:19:21', '', 50, 'https://av-advertising.com/beyondc/?p=457', 0, 'revision', '', 0),
(458, 1, '2023-10-06 08:19:21', '2023-10-06 08:19:21', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"332\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material.jpeg 332w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-300x257.jpeg 300w\" sizes=\"(max-width: 332px) 100vw, 332px\" />															\n															<img width=\"333\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-170x300.jpeg 170w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n															<img width=\"687\" height=\"588\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond2-300x257.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"686\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3.jpeg 686w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond-3-300x124.jpeg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />															\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/beyond4-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />															\n															<img width=\"332\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1.jpeg 332w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/materil-inside1-300x257.jpeg 300w\" sizes=\"(max-width: 332px) 100vw, 332px\" />															\n															<img width=\"333\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2.jpeg 333w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside2-300x256.jpeg 300w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n															<img width=\"687\" height=\"284\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3.jpeg 687w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material-inside3-300x124.jpeg 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />', 'Materials', '', 'inherit', 'closed', 'closed', '', '50-revision-v1', '', '', '2023-10-06 08:19:21', '2023-10-06 08:19:21', '', 50, 'https://av-advertising.com/beyondc/?p=458', 0, 'revision', '', 0),
(459, 1, '2023-10-06 11:18:11', '2023-10-06 11:18:11', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>About Us</h2>		\n			<h2>Our Mission</h2>		\n		<p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.</p>		\n			<h2>Our Vision</h2>		\n		<p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime</p>		\n			<h2>Why</h2>		\n		<p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br />We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.</p><p>We exist to redefine luxury with a conscience.</p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don’t just tell stories; they create legacies.</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"375\" height=\"450\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1.jpg 375w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1-250x300.jpg 250w\" sizes=\"(max-width: 375px) 100vw, 375px\" />															\n			<h2>Kumar Verma</h2>		\n			<p>Founder & CEO</p>		\n		<p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar’s journey is one of unwavering passion and dedication.</p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he’s a visionary who believes in the extraordinary.</p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '54-revision-v1', '', '', '2023-10-06 11:18:11', '2023-10-06 11:18:11', '', 54, 'https://av-advertising.com/beyondc/?p=459', 0, 'revision', '', 0),
(460, 1, '2023-10-06 11:18:11', '2023-10-06 11:18:11', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>About Us</h2>		\n			<h2>Our Mission</h2>		\n		<p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.</p>		\n			<h2>Our Vision</h2>		\n		<p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime</p>		\n			<h2>Why</h2>		\n		<p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br />We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.</p><p>We exist to redefine luxury with a conscience.</p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don’t just tell stories; they create legacies.</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"375\" height=\"450\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1.jpg 375w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1-250x300.jpg 250w\" sizes=\"(max-width: 375px) 100vw, 375px\" />															\n			<h2>Kumar Verma</h2>		\n			<p>Founder & CEO</p>		\n		<p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar’s journey is one of unwavering passion and dedication.</p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he’s a visionary who believes in the extraordinary.</p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '54-revision-v1', '', '', '2023-10-06 11:18:11', '2023-10-06 11:18:11', '', 54, 'https://av-advertising.com/beyondc/?p=460', 0, 'revision', '', 0),
(461, 1, '2023-10-06 11:18:12', '2023-10-06 11:18:12', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>About Us</h2>		\n			<h2>Our Mission</h2>		\n		<p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.</p>		\n			<h2>Our Vision</h2>		\n		<p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime</p>		\n			<h2>Why</h2>		\n		<p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br />We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.</p><p>We exist to redefine luxury with a conscience.</p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don’t just tell stories; they create legacies.</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"375\" height=\"450\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1.jpg 375w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1-250x300.jpg 250w\" sizes=\"(max-width: 375px) 100vw, 375px\" />															\n			<h2>Kumar Verma</h2>		\n			<p>Founder & CEO</p>		\n		<p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar’s journey is one of unwavering passion and dedication.</p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he’s a visionary who believes in the extraordinary.</p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '54-revision-v1', '', '', '2023-10-06 11:18:12', '2023-10-06 11:18:12', '', 54, 'https://av-advertising.com/beyondc/?p=461', 0, 'revision', '', 0),
(463, 1, '2023-10-06 11:25:02', '2023-10-06 11:25:02', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>About Us</h2>		\n			<h2>Our Mission</h2>		\n		<p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.</p>		\n			<h2>Our Vision</h2>		\n		<p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime</p>		\n			<h2>Why</h2>		\n		<p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br />We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.</p><p>We exist to redefine luxury with a conscience.</p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don’t just tell stories; they create legacies.</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"375\" height=\"450\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1.jpg 375w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1-250x300.jpg 250w\" sizes=\"(max-width: 375px) 100vw, 375px\" />															\n			<h2>Kumar Verma</h2>		\n			<p>Founder & CEO</p>		\n		<p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar’s journey is one of unwavering passion and dedication.</p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he’s a visionary who believes in the extraordinary.</p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '54-revision-v1', '', '', '2023-10-06 11:25:02', '2023-10-06 11:25:02', '', 54, 'https://av-advertising.com/beyondc/?p=463', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(464, 1, '2023-10-06 11:25:02', '2023-10-06 11:25:02', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>About Us</h2>		\n			<h2>Our Mission</h2>		\n		<p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.</p>		\n			<h2>Our Vision</h2>		\n		<p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime</p>		\n			<h2>Why</h2>		\n		<p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br />We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.</p><p>We exist to redefine luxury with a conscience.</p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don’t just tell stories; they create legacies.</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"375\" height=\"450\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1.jpg 375w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1-250x300.jpg 250w\" sizes=\"(max-width: 375px) 100vw, 375px\" />															\n			<h2>Kumar Verma</h2>		\n			<p>Founder & CEO</p>		\n		<p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar’s journey is one of unwavering passion and dedication.</p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he’s a visionary who believes in the extraordinary.</p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '54-revision-v1', '', '', '2023-10-06 11:25:02', '2023-10-06 11:25:02', '', 54, 'https://av-advertising.com/beyondc/?p=464', 0, 'revision', '', 0),
(465, 1, '2023-10-06 11:25:03', '2023-10-06 11:25:03', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>About Us</h2>		\n			<h2>Our Mission</h2>		\n		<p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.</p>		\n			<h2>Our Vision</h2>		\n		<p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime</p>		\n			<h2>Why</h2>		\n		<p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br />We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.</p><p>We exist to redefine luxury with a conscience.</p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don’t just tell stories; they create legacies.</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"375\" height=\"450\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1.jpg 375w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1-250x300.jpg 250w\" sizes=\"(max-width: 375px) 100vw, 375px\" />															\n			<h2>Kumar Verma</h2>		\n			<p>Founder & CEO</p>		\n		<p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar’s journey is one of unwavering passion and dedication.</p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he’s a visionary who believes in the extraordinary.</p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '54-revision-v1', '', '', '2023-10-06 11:25:03', '2023-10-06 11:25:03', '', 54, 'https://av-advertising.com/beyondc/?p=465', 0, 'revision', '', 0),
(468, 1, '2023-10-06 11:34:29', '2023-10-06 11:34:29', '', 'COM4t-Drify-Light.ttf', '', 'inherit', 'open', 'closed', '', 'com4t-drify-light-ttf', '', '', '2023-10-06 11:34:29', '2023-10-06 11:34:29', '', 0, 'http://av-advertising.com/beyondc/wp-content/uploads/2023/10/COM4t-Drify-Light.ttf.woff', 0, 'attachment', 'font/woff', 0),
(469, 1, '2023-10-06 11:36:07', '2023-10-06 11:36:07', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>About Us</h2>		\n			<h2>Our Mission</h2>		\n		<p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.</p>		\n			<h2>Our Vision</h2>		\n		<p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime</p>		\n			<h2>Why</h2>		\n		<p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br />We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.</p><p>We exist to redefine luxury with a conscience.</p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don’t just tell stories; they create legacies.</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"375\" height=\"450\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1.jpg 375w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1-250x300.jpg 250w\" sizes=\"(max-width: 375px) 100vw, 375px\" />															\n			<h2>Kumar Verma</h2>		\n			<p>Founder & CEO</p>		\n		<p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar’s journey is one of unwavering passion and dedication.</p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he’s a visionary who believes in the extraordinary.</p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '54-revision-v1', '', '', '2023-10-06 11:36:07', '2023-10-06 11:36:07', '', 54, 'https://av-advertising.com/beyondc/?p=469', 0, 'revision', '', 0),
(470, 1, '2023-10-06 11:36:07', '2023-10-06 11:36:07', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>About Us</h2>		\n			<h2>Our Mission</h2>		\n		<p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.</p>		\n			<h2>Our Vision</h2>		\n		<p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime</p>		\n			<h2>Why</h2>		\n		<p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br />We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.</p><p>We exist to redefine luxury with a conscience.</p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don’t just tell stories; they create legacies.</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"375\" height=\"450\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1.jpg 375w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1-250x300.jpg 250w\" sizes=\"(max-width: 375px) 100vw, 375px\" />															\n			<h2>Kumar Verma</h2>		\n			<p>Founder & CEO</p>		\n		<p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar’s journey is one of unwavering passion and dedication.</p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he’s a visionary who believes in the extraordinary.</p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '54-revision-v1', '', '', '2023-10-06 11:36:07', '2023-10-06 11:36:07', '', 54, 'https://av-advertising.com/beyondc/?p=470', 0, 'revision', '', 0),
(471, 1, '2023-10-06 11:36:08', '2023-10-06 11:36:08', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>About Us</h2>		\n			<h2>Our Mission</h2>		\n		<p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.</p>		\n			<h2>Our Vision</h2>		\n		<p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime</p>		\n			<h2>Why</h2>		\n		<p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br />We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.</p><p>We exist to redefine luxury with a conscience.</p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don’t just tell stories; they create legacies.</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"375\" height=\"450\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1.jpg 375w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1-250x300.jpg 250w\" sizes=\"(max-width: 375px) 100vw, 375px\" />															\n			<h2>Kumar Verma</h2>		\n			<p>Founder & CEO</p>		\n		<p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar’s journey is one of unwavering passion and dedication.</p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he’s a visionary who believes in the extraordinary.</p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '54-revision-v1', '', '', '2023-10-06 11:36:08', '2023-10-06 11:36:08', '', 54, 'https://av-advertising.com/beyondc/?p=471', 0, 'revision', '', 0),
(472, 1, '2023-10-06 11:36:35', '2023-10-06 11:36:35', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>About Us</h2>		\n			<h2>Our Mission</h2>		\n		<p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.</p>		\n			<h2>Our Vision</h2>		\n		<p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime</p>		\n			<h2>Why</h2>		\n		<p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br />We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.</p><p>We exist to redefine luxury with a conscience.</p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don’t just tell stories; they create legacies.</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"375\" height=\"450\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1.jpg 375w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1-250x300.jpg 250w\" sizes=\"(max-width: 375px) 100vw, 375px\" />															\n			<h2>Kumar Verma</h2>		\n			<p>Founder & CEO</p>		\n		<p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar’s journey is one of unwavering passion and dedication.</p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he’s a visionary who believes in the extraordinary.</p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '54-revision-v1', '', '', '2023-10-06 11:36:35', '2023-10-06 11:36:35', '', 54, 'https://av-advertising.com/beyondc/?p=472', 0, 'revision', '', 0),
(473, 1, '2023-10-06 11:36:35', '2023-10-06 11:36:35', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>About Us</h2>		\n			<h2>Our Mission</h2>		\n		<p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.</p>		\n			<h2>Our Vision</h2>		\n		<p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime</p>		\n			<h2>Why</h2>		\n		<p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br />We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.</p><p>We exist to redefine luxury with a conscience.</p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don’t just tell stories; they create legacies.</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"375\" height=\"450\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1.jpg 375w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1-250x300.jpg 250w\" sizes=\"(max-width: 375px) 100vw, 375px\" />															\n			<h2>Kumar Verma</h2>		\n			<p>Founder & CEO</p>		\n		<p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar’s journey is one of unwavering passion and dedication.</p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he’s a visionary who believes in the extraordinary.</p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '54-revision-v1', '', '', '2023-10-06 11:36:35', '2023-10-06 11:36:35', '', 54, 'https://av-advertising.com/beyondc/?p=473', 0, 'revision', '', 0),
(474, 1, '2023-10-06 11:36:36', '2023-10-06 11:36:36', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>About Us</h2>		\n			<h2>Our Mission</h2>		\n		<p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.</p>		\n			<h2>Our Vision</h2>		\n		<p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime</p>		\n			<h2>Why</h2>		\n		<p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br />We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.</p><p>We exist to redefine luxury with a conscience.</p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don’t just tell stories; they create legacies.</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"375\" height=\"450\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1.jpg 375w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1-250x300.jpg 250w\" sizes=\"(max-width: 375px) 100vw, 375px\" />															\n			<h2>Kumar Verma</h2>		\n			<p>Founder & CEO</p>		\n		<p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar’s journey is one of unwavering passion and dedication.</p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he’s a visionary who believes in the extraordinary.</p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '54-revision-v1', '', '', '2023-10-06 11:36:36', '2023-10-06 11:36:36', '', 54, 'https://av-advertising.com/beyondc/?p=474', 0, 'revision', '', 0),
(477, 1, '2023-10-06 12:27:16', '2023-10-06 12:27:16', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>About Us</h2>		\n			<h2>Our Mission</h2>		\n		<p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.</p>		\n			<h2>Our Vision</h2>		\n		<p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime</p>		\n			<h2>Why</h2>		\n		<p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br />We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.</p><p>We exist to redefine luxury with a conscience.</p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don’t just tell stories; they create legacies.</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"375\" height=\"450\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1.jpg 375w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1-250x300.jpg 250w\" sizes=\"(max-width: 375px) 100vw, 375px\" />															\n			<h2>Kumar Verma</h2>		\n			<p>Founder & CEO</p>		\n		<p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar’s journey is one of unwavering passion and dedication.</p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he’s a visionary who believes in the extraordinary.</p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '54-revision-v1', '', '', '2023-10-06 12:27:16', '2023-10-06 12:27:16', '', 54, 'https://av-advertising.com/beyondc/?p=477', 0, 'revision', '', 0),
(478, 1, '2023-10-06 12:27:17', '2023-10-06 12:27:17', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>About Us</h2>		\n			<h2>Our Mission</h2>		\n		<p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.</p>		\n			<h2>Our Vision</h2>		\n		<p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime</p>		\n			<h2>Why</h2>		\n		<p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br />We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.</p><p>We exist to redefine luxury with a conscience.</p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don’t just tell stories; they create legacies.</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"375\" height=\"450\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1.jpg 375w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1-250x300.jpg 250w\" sizes=\"(max-width: 375px) 100vw, 375px\" />															\n			<h2>Kumar Verma</h2>		\n			<p>Founder & CEO</p>		\n		<p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar’s journey is one of unwavering passion and dedication.</p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he’s a visionary who believes in the extraordinary.</p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '54-revision-v1', '', '', '2023-10-06 12:27:17', '2023-10-06 12:27:17', '', 54, 'https://av-advertising.com/beyondc/?p=478', 0, 'revision', '', 0),
(479, 1, '2023-10-06 12:27:17', '2023-10-06 12:27:17', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>About Us</h2>		\n			<h2>Our Mission</h2>		\n		<p>To redefine the essence of luxury, transcending conventional boundaries and igniting spaces with captivating artistry. With unwavering commitment to innovation, we are dedicated to surpassing our own expectations and continue setting new benchmarks within the industry.</p>		\n			<h2>Our Vision</h2>		\n		<p>To be viewed as a symbol of excellence, setting the standard for innovation, quality and customer-centricity. To be known for our unparalleled craftsmanship, where every texture we create becomes a masterpiece of its own, creating an impression of a lifetime</p>		\n			<h2>Why</h2>		\n		<p>We exist to redefine the very essence of luxury, breaking free from conventional boundaries and igniting ordinary spaces with captivating artistry.<br />We exist to spread the branches of our deep-rooted belief that beauty should not come at the expense of our planet, or the well-being of our communities.</p><p>We exist to redefine luxury with a conscience.</p><p>Join us on our journey, where artistry, sustainability, and social impact converge to create a world where walls don’t just tell stories; they create legacies.</p>		\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"375\" height=\"450\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1.jpg 375w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/KV_IMG1-250x300.jpg 250w\" sizes=\"(max-width: 375px) 100vw, 375px\" />															\n			<h2>Kumar Verma</h2>		\n			<p>Founder & CEO</p>		\n		<p>With over two decades worth of experience up his sleeve, Kumar Varma stands at the helm of Beyond Colors. Armed with a degree in Computer Science Engineering, and his knowledge and expertise from the SEED Transformation Program at Stanford University Graduate School of Business, Kumar’s journey is one of unwavering passion and dedication.</p><p>Carving a niche for himself as a trailblazer in project management, brand development, master planning, strategic sales and operations, he is not just a leader; he’s a visionary who believes in the extraordinary.</p><p>Today, as the driving force behind Beyond Colors, Kumar Varma continues to push boundaries of creativity and craftsmanship, redefining what it means to elevate spaces through luxury surface designs.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '54-revision-v1', '', '', '2023-10-06 12:27:17', '2023-10-06 12:27:17', '', 54, 'https://av-advertising.com/beyondc/?p=479', 0, 'revision', '', 0),
(480, 1, '2023-10-06 12:34:12', '2023-10-06 12:34:12', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Coming Soon</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-06 12:34:12', '2023-10-06 12:34:12', '', 52, 'https://av-advertising.com/beyondc/?p=480', 0, 'revision', '', 0),
(481, 1, '2023-10-06 12:34:12', '2023-10-06 12:34:12', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Coming Soon</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-06 12:34:12', '2023-10-06 12:34:12', '', 52, 'https://av-advertising.com/beyondc/?p=481', 0, 'revision', '', 0),
(482, 1, '2023-10-06 12:34:12', '2023-10-06 12:34:12', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Coming Soon</h2>', 'Projects', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2023-10-06 12:34:12', '2023-10-06 12:34:12', '', 52, 'https://av-advertising.com/beyondc/?p=482', 0, 'revision', '', 0),
(483, 1, '2023-10-06 12:34:44', '2023-10-06 12:34:44', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>CONTACT & ENQUIRIES</h2>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '56-revision-v1', '', '', '2023-10-06 12:34:44', '2023-10-06 12:34:44', '', 56, 'https://av-advertising.com/beyondc/?p=483', 0, 'revision', '', 0),
(484, 1, '2023-10-06 12:34:44', '2023-10-06 12:34:44', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>CONTACT & ENQUIRIES</h2>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '56-revision-v1', '', '', '2023-10-06 12:34:44', '2023-10-06 12:34:44', '', 56, 'https://av-advertising.com/beyondc/?p=484', 0, 'revision', '', 0),
(485, 1, '2023-10-06 12:34:44', '2023-10-06 12:34:44', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>CONTACT & ENQUIRIES</h2>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '56-revision-v1', '', '', '2023-10-06 12:34:44', '2023-10-06 12:34:44', '', 56, 'https://av-advertising.com/beyondc/?p=485', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(486, 1, '2023-10-06 12:35:29', '2023-10-06 12:35:29', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"442\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg 442w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-150x150.jpeg 150w\" sizes=\"(max-width: 442px) 100vw, 442px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery7.jpeg\" alt=\"gallery7\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery6.jpeg\" alt=\"gallery6\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery5.jpeg\" alt=\"gallery5\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery4.jpeg\" alt=\"gallery4\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery3.jpeg\" alt=\"gallery3\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery1.jpeg\" alt=\"gallery1\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"445\" height=\"445\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg 445w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-150x150.jpeg 150w\" sizes=\"(max-width: 445px) 100vw, 445px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br /><strong>Eco-friendly materials:</strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.</p><p><strong> Empowering artisans:</strong> We’re more than just a luxury brand; we’re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-06 12:35:29', '2023-10-06 12:35:29', '', 13, 'https://av-advertising.com/beyondc/?p=486', 0, 'revision', '', 0),
(487, 1, '2023-10-06 12:35:29', '2023-10-06 12:35:29', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"442\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg 442w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-150x150.jpeg 150w\" sizes=\"(max-width: 442px) 100vw, 442px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery7.jpeg\" alt=\"gallery7\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery6.jpeg\" alt=\"gallery6\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery5.jpeg\" alt=\"gallery5\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery4.jpeg\" alt=\"gallery4\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery3.jpeg\" alt=\"gallery3\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery1.jpeg\" alt=\"gallery1\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"445\" height=\"445\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg 445w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-150x150.jpeg 150w\" sizes=\"(max-width: 445px) 100vw, 445px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br /><strong>Eco-friendly materials:</strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.</p><p><strong> Empowering artisans:</strong> We’re more than just a luxury brand; we’re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-06 12:35:29', '2023-10-06 12:35:29', '', 13, 'https://av-advertising.com/beyondc/?p=487', 0, 'revision', '', 0),
(488, 1, '2023-10-06 12:35:29', '2023-10-06 12:35:29', '<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"604\" height=\"51\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo.png 604w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-300x25.png 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/Beyond-Color-Logo-600x51.png 600w\" sizes=\"(max-width: 604px) 100vw, 604px\" />															\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/Home-Banner.jpeg\" alt=\"Beyond Color\" /></figure>			\n			<style>/*! elementor - v3.16.0 - 20-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Materials</h2>		\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/09/material1-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n															<img width=\"442\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2.jpeg 442w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material2-150x150.jpeg 150w\" sizes=\"(max-width: 442px) 100vw, 442px\" />															\n															<img width=\"441\" height=\"441\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3.jpeg 441w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/material3-150x150.jpeg 150w\" sizes=\"(max-width: 441px) 100vw, 441px\" />															\n			<h2>Gallery</h2>		\n								<figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery-material.jpeg\" alt=\"gallery-material\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery2.jpeg\" alt=\"gallery2\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery7.jpeg\" alt=\"gallery7\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery6.jpeg\" alt=\"gallery6\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery5.jpeg\" alt=\"gallery5\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery4.jpeg\" alt=\"gallery4\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery3.jpeg\" alt=\"gallery3\" /></figure><figure><img src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/gallery1.jpeg\" alt=\"gallery1\" /></figure>			\n			<h2>Inspiration By Style</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/kithchens-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Kitchen</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/bathrooms-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Bathroom</h2>		\n															<img width=\"330\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room.jpeg 330w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/living-room-150x150.jpeg 150w\" sizes=\"(max-width: 330px) 100vw, 330px\" />															\n			<h2>Living Room</h2>		\n															<img width=\"329\" height=\"329\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home.jpeg 329w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/by-style-home-150x150.jpeg 150w\" sizes=\"(max-width: 329px) 100vw, 329px\" />															\n			<h2>Home</h2>		\n			<h2>Follow Us</h2>		\n		<p>Immerse yourself in the Beyond Colors experience, where we redefine the ordinary and invite you to a realm of unparalleled creativity. Our brand story is a testament to passion, innovation, and the fusion of traditional craftsmanship with modern artistry. Step into to a world where walls tell stories, and every day is a canvas for luxury masterpieces.</p>		\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/follow1-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n															<img width=\"451\" height=\"447\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom.jpeg 451w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-300x297.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/showroom-150x150.jpeg 150w\" sizes=\"(max-width: 451px) 100vw, 451px\" />															\n			<h2>Visit Showroom</h2>		\n															<img width=\"445\" height=\"445\" src=\"http://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram.jpeg 445w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-300x300.jpeg 300w, https://av-advertising.com/beyondc/wp-content/uploads/2023/10/instagram-150x150.jpeg 150w\" sizes=\"(max-width: 445px) 100vw, 445px\" />															\n			<h2>Instagram</h2>		\n			<h2>Sustainability & Social Impact</h2>		\n		<p>We believe that beauty should not come at the cost of our planet or the well-being of our communities.<br /><strong>Eco-friendly materials:</strong> By prioritising sustainable sourcing and production, we minimise our environmental footprint while delivering stunning designs that captivate the senses.</p><p><strong> Empowering artisans:</strong> We’re more than just a luxury brand; we’re a platform for modern and traditional artisans to showcase their craftsmanship. Our creations have a positive impact on the communities we work with, and the clients we work for.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2023-10-06 12:35:29', '2023-10-06 12:35:29', '', 13, 'https://av-advertising.com/beyondc/?p=488', 0, 'revision', '', 0);

-- --------------------------------------------------------

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

CREATE TABLE `wp_termmeta` (
  `meta_id` bigint(20) UNSIGNED NOT NULL,
  `term_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

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

CREATE TABLE `wp_terms` (
  `term_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(200) NOT NULL DEFAULT '',
  `slug` varchar(200) NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

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

INSERT INTO `wp_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES
(1, 'Uncategorized', 'uncategorized', 0),
(2, 'Main Menu', 'main-menu', 0),
(3, 'section', 'section', 0),
(4, 'custom', 'custom', 0),
(5, 'container', 'container', 0);

-- --------------------------------------------------------

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

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
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

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

INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES
(1, 1, 0),
(24, 2, 0),
(25, 3, 0),
(49, 3, 0),
(58, 2, 0),
(59, 2, 0),
(60, 2, 0),
(61, 2, 0),
(188, 5, 0),
(208, 3, 0);

-- --------------------------------------------------------

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

CREATE TABLE `wp_term_taxonomy` (
  `term_taxonomy_id` bigint(20) UNSIGNED NOT NULL,
  `term_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `taxonomy` varchar(32) NOT NULL DEFAULT '',
  `description` longtext NOT NULL,
  `parent` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `count` bigint(20) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

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

INSERT INTO `wp_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES
(1, 1, 'category', '', 0, 1),
(2, 2, 'nav_menu', '', 0, 5),
(3, 3, 'elementor_library_type', '', 0, 1),
(4, 4, 'elementor_font_type', '', 0, 0),
(5, 5, 'elementor_library_type', '', 0, 1);

-- --------------------------------------------------------

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

CREATE TABLE `wp_usermeta` (
  `umeta_id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

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

INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) 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'),
(16, 1, 'session_tokens', 'a:1:{s:64:\"69a87226b88dc9ab1b2abb06e5850c02f65494e1b0d2acce67432f6b35cadd86\";a:4:{s:10:\"expiration\";i:1696740199;s:2:\"ip\";s:13:\"103.210.66.23\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36\";s:5:\"login\";i:1696567399;}}'),
(17, 1, 'wp_user-settings', 'deleted=undefined&libraryContent=browse&editor=tinymce'),
(18, 1, 'wp_user-settings-time', '1696238263'),
(19, 1, 'wp_dashboard_quick_press_last_post_id', '343'),
(20, 1, 'community-events-location', 'a:1:{s:2:\"ip\";s:12:\"103.210.66.0\";}'),
(21, 1, 'wp_persisted_preferences', 'a:3:{s:22:\"core/customize-widgets\";a:1:{s:12:\"welcomeGuide\";b:0;}s:9:\"_modified\";s:24:\"2023-09-25T08:44:32.195Z\";s:14:\"core/edit-post\";a:7:{s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;s:10:\"openPanels\";a:2:{i:0;s:11:\"post-status\";i:1;s:15:\"page-attributes\";}s:10:\"editorMode\";s:6:\"visual\";s:14:\"fullscreenMode\";b:0;s:9:\"focusMode\";b:1;s:12:\"fixedToolbar\";b:1;}}'),
(22, 1, 'elementor_introduction', 'a:4:{s:27:\"ai-get-started-announcement\";b:1;s:20:\"globals_introduction\";b:1;s:7:\"exit_to\";b:1;s:16:\"favorites-notice\";b:1;}'),
(23, 1, 'managenav-menuscolumnshidden', 'a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),
(24, 1, 'metaboxhidden_nav-menus', 'a:3:{i:0;s:28:\"add-post-type-e-landing-page\";i:1;s:12:\"add-post_tag\";i:2;s:15:\"add-post_format\";}'),
(25, 1, 'meta-box-order_elementor_library', 'a:3:{s:4:\"side\";s:52:\"elementor_library_categorydiv,submitdiv,postimagediv\";s:6:\"normal\";s:30:\"revisionsdiv,slugdiv,authordiv\";s:8:\"advanced\";s:0:\"\";}'),
(26, 1, 'screen_layout_elementor_library', '2'),
(27, 1, 'wp_elementor_connect_common_data', 'a:7:{s:9:\"client_id\";s:32:\"p0riFzhY4J0I0Kj9hmR2v8aGeGb4q9aP\";s:11:\"auth_secret\";s:32:\"NJcuo7LhtuJhctSjMFIJMAwE9GEowzr2\";s:12:\"access_token\";s:305:\"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOjU2NTQ5NDAsImF1ZCI6Imh0dHBzOi8vYXYtYWR2ZXJ0aXNpbmcuY29tL2JleW9uZGMvIiwiY2xpZW50X2lkIjoicDByaUZ6aFk0SjBJMEtqOWhtUjJ2OGFHZUdiNHE5YVAiLCJjb25uZWN0X3R5cGUiOiJhY3RpdmF0ZSIsImlhdCI6MTY5NTcyMTk1MSwiZXhwIjozMTcyNDAxNjQzNTF9.CC4RQCAK7FNa762aDJdX9z7aKoqAdGC10ft8VSwAqTA\";s:19:\"access_token_secret\";s:32:\"y7vFTUWugCpe485zusVyK1wGEtYaPlrR\";s:10:\"token_type\";s:6:\"bearer\";s:4:\"user\";O:8:\"stdClass\":1:{s:5:\"email\";s:17:\"varma84@gmail.com\";}s:19:\"data_share_opted_in\";b:1;}'),
(28, 1, 'nav_menu_recently_edited', '2');

-- --------------------------------------------------------

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

CREATE TABLE `wp_users` (
  `ID` bigint(20) UNSIGNED NOT NULL,
  `user_login` varchar(60) NOT NULL DEFAULT '',
  `user_pass` varchar(255) NOT NULL DEFAULT '',
  `user_nicename` varchar(50) NOT NULL DEFAULT '',
  `user_email` varchar(100) NOT NULL DEFAULT '',
  `user_url` varchar(100) NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT 0,
  `display_name` varchar(250) NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

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

INSERT INTO `wp_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES
(1, 'txuann', '$P$Bk/K5HA5YqXmL7xARPYJN2Ucp0NU20.', 'admin', 'irovz794gpdq@sg2plzcpnl491724.prod.sin2.secureserver.net', 'http://av-advertising.com/beyondc', '2023-09-22 22:58:46', '', 0, 'admin');

--
-- Indexes for dumped tables
--

--
-- Indexes for table `wp_commentmeta`
--
ALTER TABLE `wp_commentmeta`
  ADD PRIMARY KEY (`meta_id`),
  ADD KEY `comment_id` (`comment_id`),
  ADD KEY `meta_key` (`meta_key`(191));

--
-- Indexes for table `wp_comments`
--
ALTER TABLE `wp_comments`
  ADD PRIMARY KEY (`comment_ID`),
  ADD KEY `comment_post_ID` (`comment_post_ID`),
  ADD KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  ADD KEY `comment_date_gmt` (`comment_date_gmt`),
  ADD KEY `comment_parent` (`comment_parent`),
  ADD KEY `comment_author_email` (`comment_author_email`(10));

--
-- Indexes for table `wp_e_events`
--
ALTER TABLE `wp_e_events`
  ADD PRIMARY KEY (`id`),
  ADD KEY `created_at_index` (`created_at`);

--
-- Indexes for table `wp_e_submissions`
--
ALTER TABLE `wp_e_submissions`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `hash_id_unique_index` (`hash_id`),
  ADD KEY `main_meta_id_index` (`main_meta_id`),
  ADD KEY `hash_id_index` (`hash_id`),
  ADD KEY `type_index` (`type`),
  ADD KEY `post_id_index` (`post_id`),
  ADD KEY `element_id_index` (`element_id`),
  ADD KEY `campaign_id_index` (`campaign_id`),
  ADD KEY `user_id_index` (`user_id`),
  ADD KEY `user_ip_index` (`user_ip`),
  ADD KEY `status_index` (`status`),
  ADD KEY `is_read_index` (`is_read`),
  ADD KEY `created_at_gmt_index` (`created_at_gmt`),
  ADD KEY `updated_at_gmt_index` (`updated_at_gmt`),
  ADD KEY `created_at_index` (`created_at`),
  ADD KEY `updated_at_index` (`updated_at`),
  ADD KEY `referer_index` (`referer`(191)),
  ADD KEY `referer_title_index` (`referer_title`(191));

--
-- Indexes for table `wp_e_submissions_actions_log`
--
ALTER TABLE `wp_e_submissions_actions_log`
  ADD PRIMARY KEY (`id`),
  ADD KEY `submission_id_index` (`submission_id`),
  ADD KEY `action_name_index` (`action_name`),
  ADD KEY `status_index` (`status`),
  ADD KEY `created_at_gmt_index` (`created_at_gmt`),
  ADD KEY `updated_at_gmt_index` (`updated_at_gmt`),
  ADD KEY `created_at_index` (`created_at`),
  ADD KEY `updated_at_index` (`updated_at`);

--
-- Indexes for table `wp_e_submissions_values`
--
ALTER TABLE `wp_e_submissions_values`
  ADD PRIMARY KEY (`id`),
  ADD KEY `submission_id_index` (`submission_id`),
  ADD KEY `key_index` (`key`);

--
-- Indexes for table `wp_links`
--
ALTER TABLE `wp_links`
  ADD PRIMARY KEY (`link_id`),
  ADD KEY `link_visible` (`link_visible`);

--
-- Indexes for table `wp_litespeed_url`
--
ALTER TABLE `wp_litespeed_url`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `url` (`url`(191)),
  ADD KEY `cache_tags` (`cache_tags`(191));

--
-- Indexes for table `wp_litespeed_url_file`
--
ALTER TABLE `wp_litespeed_url_file`
  ADD PRIMARY KEY (`id`),
  ADD KEY `filename` (`filename`),
  ADD KEY `type` (`type`),
  ADD KEY `url_id_2` (`url_id`,`vary`,`type`),
  ADD KEY `filename_2` (`filename`,`expired`),
  ADD KEY `url_id` (`url_id`,`expired`);

--
-- Indexes for table `wp_options`
--
ALTER TABLE `wp_options`
  ADD PRIMARY KEY (`option_id`),
  ADD UNIQUE KEY `option_name` (`option_name`),
  ADD KEY `autoload` (`autoload`);

--
-- Indexes for table `wp_postmeta`
--
ALTER TABLE `wp_postmeta`
  ADD PRIMARY KEY (`meta_id`),
  ADD KEY `post_id` (`post_id`),
  ADD KEY `meta_key` (`meta_key`(191));

--
-- Indexes for table `wp_posts`
--
ALTER TABLE `wp_posts`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `post_name` (`post_name`(191)),
  ADD KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  ADD KEY `post_parent` (`post_parent`),
  ADD KEY `post_author` (`post_author`),
  ADD KEY `type_status_author` (`post_type`,`post_status`,`post_author`);

--
-- Indexes for table `wp_termmeta`
--
ALTER TABLE `wp_termmeta`
  ADD PRIMARY KEY (`meta_id`),
  ADD KEY `term_id` (`term_id`),
  ADD KEY `meta_key` (`meta_key`(191));

--
-- Indexes for table `wp_terms`
--
ALTER TABLE `wp_terms`
  ADD PRIMARY KEY (`term_id`),
  ADD KEY `slug` (`slug`(191)),
  ADD KEY `name` (`name`(191));

--
-- Indexes for table `wp_term_relationships`
--
ALTER TABLE `wp_term_relationships`
  ADD PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  ADD KEY `term_taxonomy_id` (`term_taxonomy_id`);

--
-- Indexes for table `wp_term_taxonomy`
--
ALTER TABLE `wp_term_taxonomy`
  ADD PRIMARY KEY (`term_taxonomy_id`),
  ADD UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  ADD KEY `taxonomy` (`taxonomy`);

--
-- Indexes for table `wp_usermeta`
--
ALTER TABLE `wp_usermeta`
  ADD PRIMARY KEY (`umeta_id`),
  ADD KEY `user_id` (`user_id`),
  ADD KEY `meta_key` (`meta_key`(191));

--
-- Indexes for table `wp_users`
--
ALTER TABLE `wp_users`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `user_login_key` (`user_login`),
  ADD KEY `user_nicename` (`user_nicename`),
  ADD KEY `user_email` (`user_email`);

--
-- AUTO_INCREMENT for dumped tables
--

--
-- AUTO_INCREMENT for table `wp_commentmeta`
--
ALTER TABLE `wp_commentmeta`
  MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_comments`
--
ALTER TABLE `wp_comments`
  MODIFY `comment_ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `wp_e_events`
--
ALTER TABLE `wp_e_events`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_e_submissions`
--
ALTER TABLE `wp_e_submissions`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_e_submissions_actions_log`
--
ALTER TABLE `wp_e_submissions_actions_log`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_e_submissions_values`
--
ALTER TABLE `wp_e_submissions_values`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_links`
--
ALTER TABLE `wp_links`
  MODIFY `link_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_litespeed_url`
--
ALTER TABLE `wp_litespeed_url`
  MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_litespeed_url_file`
--
ALTER TABLE `wp_litespeed_url_file`
  MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_options`
--
ALTER TABLE `wp_options`
  MODIFY `option_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4208;

--
-- AUTO_INCREMENT for table `wp_postmeta`
--
ALTER TABLE `wp_postmeta`
  MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3380;

--
-- AUTO_INCREMENT for table `wp_posts`
--
ALTER TABLE `wp_posts`
  MODIFY `ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=489;

--
-- AUTO_INCREMENT for table `wp_termmeta`
--
ALTER TABLE `wp_termmeta`
  MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_terms`
--
ALTER TABLE `wp_terms`
  MODIFY `term_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `wp_term_taxonomy`
--
ALTER TABLE `wp_term_taxonomy`
  MODIFY `term_taxonomy_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `wp_usermeta`
--
ALTER TABLE `wp_usermeta`
  MODIFY `umeta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=29;

--
-- AUTO_INCREMENT for table `wp_users`
--
ALTER TABLE `wp_users`
  MODIFY `ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
COMMIT;

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